| Index: webrtc/base/nullsocketserver_unittest.cc
|
| diff --git a/webrtc/base/nullsocketserver_unittest.cc b/webrtc/base/nullsocketserver_unittest.cc
|
| index 4bb1d7f8ebb20c12dcba80589003fda6f46e7a71..2aa38b490d760782b223c93da80170379c4b49e9 100644
|
| --- a/webrtc/base/nullsocketserver_unittest.cc
|
| +++ b/webrtc/base/nullsocketserver_unittest.cc
|
| @@ -14,7 +14,7 @@
|
|
|
| namespace rtc {
|
|
|
| -static const uint32 kTimeout = 5000U;
|
| +static const uint32_t kTimeout = 5000U;
|
|
|
| class NullSocketServerTest
|
| : public testing::Test,
|
| @@ -38,7 +38,7 @@ TEST_F(NullSocketServerTest, WaitAndSet) {
|
| }
|
|
|
| TEST_F(NullSocketServerTest, TestWait) {
|
| - uint32 start = Time();
|
| + uint32_t start = Time();
|
| ss_.Wait(200, true);
|
| // The actual wait time is dependent on the resolution of the timer used by
|
| // the Event class. Allow for the event to signal ~20ms early.
|
|
|