| 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 c402fb6731b1337f2f5f2e341dfe483ef06d67e3..c0516b9d0879482b4dcc8705605f381db315b5e8 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);
 | 
| @@ -275,7 +275,7 @@ class ServiceProcessStateFileManipulationTest : public ::testing::Test {
 | 
|          base::Closure()));
 | 
|      loop_.PostDelayedTask(FROM_HERE,
 | 
|                            MessageLoop::QuitClosure(),
 | 
| -                          TestTimeouts::action_max_timeout_ms());
 | 
| +                          TestTimeouts::action_max_timeout());
 | 
|    }
 | 
|  
 | 
|    const MockLaunchd* mock_launchd() const { return mock_launchd_.get(); }
 | 
| 
 |