| Index: chrome/common/service_process_util_unittest.cc
|
| diff --git a/chrome/common/service_process_util_unittest.cc b/chrome/common/service_process_util_unittest.cc
|
| index 84db35be0fdbc9ed03e64a038191b8ad0403aebd..c3a160ba232e3a7ea0cfbdfd7ecefb382d1dae1b 100644
|
| --- a/chrome/common/service_process_util_unittest.cc
|
| +++ b/chrome/common/service_process_util_unittest.cc
|
| @@ -185,7 +185,7 @@ TEST_F(ServiceProcessStateTest, MAYBE_ForceShutdown) {
|
| true);
|
| ASSERT_TRUE(handle);
|
| for (int i = 0; !CheckServiceProcessReady() && i < 10; ++i) {
|
| - base::PlatformThread::Sleep(TestTimeouts::tiny_timeout_ms());
|
| + base::PlatformThread::Sleep(TestTimeouts::tiny_timeout());
|
| }
|
| ASSERT_TRUE(CheckServiceProcessReady());
|
| std::string version;
|
| @@ -228,7 +228,7 @@ MULTIPROCESS_TEST_MAIN(ServiceProcessStateTestShutdown) {
|
| MessageLoop::current())));
|
| message_loop.PostDelayedTask(FROM_HERE,
|
| MessageLoop::QuitClosure(),
|
| - TestTimeouts::action_max_timeout_ms());
|
| + TestTimeouts::action_max_timeout());
|
| EXPECT_FALSE(g_good_shutdown);
|
| message_loop.Run();
|
| EXPECT_TRUE(g_good_shutdown);
|
| @@ -383,7 +383,7 @@ class ServiceProcessStateFileManipulationTest : public ::testing::Test {
|
| base::Closure()));
|
| loop_.PostDelayedTask(FROM_HERE,
|
| MessageLoop::QuitClosure(),
|
| - TestTimeouts::action_max_timeout_ms());
|
| + TestTimeouts::action_max_timeout());
|
| }
|
|
|
| bool MakeABundle(const FilePath& dst,
|
|
|