| Index: chrome/test/automation/proxy_launcher.cc
|
| diff --git a/chrome/test/automation/proxy_launcher.cc b/chrome/test/automation/proxy_launcher.cc
|
| index 256add6315c598a78e1f37ad0f77db59843dc8c6..6260b94aad04368d64da338633f4544e76193a35 100644
|
| --- a/chrome/test/automation/proxy_launcher.cc
|
| +++ b/chrome/test/automation/proxy_launcher.cc
|
| @@ -302,7 +302,7 @@ void ProxyLauncher::QuitBrowser() {
|
| // been closed.
|
| int exit_code = -1;
|
| EXPECT_TRUE(WaitForBrowserProcessToQuit(
|
| - TestTimeouts::wait_for_terminate_timeout_ms(), &exit_code));
|
| + TestTimeouts::action_max_timeout_ms(), &exit_code));
|
| EXPECT_EQ(0, exit_code); // Expect a clean shutdown.
|
|
|
| browser_quit_time_ = base::TimeTicks::Now() - quit_start;
|
| @@ -334,7 +334,7 @@ void ProxyLauncher::TerminateBrowser() {
|
|
|
| int exit_code = -1;
|
| EXPECT_TRUE(WaitForBrowserProcessToQuit(
|
| - TestTimeouts::wait_for_terminate_timeout_ms(), &exit_code));
|
| + TestTimeouts::action_max_timeout_ms(), &exit_code));
|
| EXPECT_EQ(0, exit_code); // Expect a clean shutdown.
|
|
|
| browser_quit_time_ = base::TimeTicks::Now() - quit_start;
|
|
|