diff options
Diffstat (limited to 'ipc/ipc_sync_channel_unittest.cc')
-rw-r--r-- | ipc/ipc_sync_channel_unittest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/ipc_sync_channel_unittest.cc b/ipc/ipc_sync_channel_unittest.cc index f396843..81ca560 100644 --- a/ipc/ipc_sync_channel_unittest.cc +++ b/ipc/ipc_sync_channel_unittest.cc @@ -1034,7 +1034,7 @@ namespace { void NestedCallback(Worker* server) { // Sleep a bit so that we wake up after the reply has been received. - base::PlatformThread::Sleep(250); + base::PlatformThread::Sleep(base::TimeDelta::FromMilliseconds(250)); server->SendAnswerToLife(true, base::kNoTimeout, true); } |