Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11397)

Unified Diff: chrome/test/automation/proxy_launcher.cc

Issue 7055007: GTTF: Remove wait_for_terminate_timeout_ms in favor of action_max_timeout_ms (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698