aboutsummaryrefslogtreecommitdiff
path: root/webrtc/system_wrappers/source/condition_variable_unittest.cc
diff options
context:
space:
mode:
authorpbos@webrtc.org <pbos@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-04-09 09:06:11 +0000
committerpbos@webrtc.org <pbos@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-04-09 09:06:11 +0000
commit046deb9b2050ebdf98a41e2d22f852e104dd365a (patch)
treecd92b3b39cc0ac245e19dacad1686e7ba003eff2 /webrtc/system_wrappers/source/condition_variable_unittest.cc
parent29758de9b6313cc4288fbc77c40bce471d3ca5e2 (diff)
downloadwebrtc-046deb9b2050ebdf98a41e2d22f852e104dd365a.tar.gz
WebRtc_Word32 -> int32_t in system_wrappers
BUG=314 Review URL: https://webrtc-codereview.appspot.com/1301004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@3791 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'webrtc/system_wrappers/source/condition_variable_unittest.cc')
-rw-r--r--webrtc/system_wrappers/source/condition_variable_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/webrtc/system_wrappers/source/condition_variable_unittest.cc b/webrtc/system_wrappers/source/condition_variable_unittest.cc
index be3bfc6eda..08491fe5f5 100644
--- a/webrtc/system_wrappers/source/condition_variable_unittest.cc
+++ b/webrtc/system_wrappers/source/condition_variable_unittest.cc
@@ -50,7 +50,7 @@ class Baton {
// Pass the baton. Returns false if baton is not picked up in |max_msecs|.
// Only one process can pass at the same time; this property is
// ensured by the |giver_sect_| lock.
- bool Pass(WebRtc_UWord32 max_msecs) {
+ bool Pass(uint32_t max_msecs) {
CriticalSectionScoped cs_giver(giver_sect_);
CriticalSectionScoped cs(crit_sect_);
SignalBatonAvailable();
@@ -62,7 +62,7 @@ class Baton {
}
// Grab the baton. Returns false if baton is not passed.
- bool Grab(WebRtc_UWord32 max_msecs) {
+ bool Grab(uint32_t max_msecs) {
CriticalSectionScoped cs(crit_sect_);
return WaitUntilBatonOffered(max_msecs);
}