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

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

Issue 195106: Implement per-test timeout for UI tests. (Closed)
Patch Set: sync with trunk Created 11 years, 3 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
« no previous file with comments | « chrome/test/automation/automation_proxy.h ('k') | chrome/test/ui/ui_test.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/automation/automation_proxy.cc
diff --git a/chrome/test/automation/automation_proxy.cc b/chrome/test/automation/automation_proxy.cc
index a039ffb33aeea187808522ae6a49900921ffeb2f..d2cfad7292334a1fc090e81ac4e1c8d200b00fc8 100644
--- a/chrome/test/automation/automation_proxy.cc
+++ b/chrome/test/automation/automation_proxy.cc
@@ -194,6 +194,10 @@ bool AutomationProxy::WaitForInitialLoads() {
return initial_loads_complete_.TimedWait(command_execution_timeout_);
}
+bool AutomationProxy::QuitAfterTimeout(int timeout_ms) {
+ return Send(new AutomationMsg_QuitAfterTimeout(0, timeout_ms));
+}
+
bool AutomationProxy::WaitForInitialNewTabUILoad(int* load_time) {
if (new_tab_ui_load_complete_.TimedWait(command_execution_timeout_)) {
*load_time = new_tab_ui_load_time_;
« no previous file with comments | « chrome/test/automation/automation_proxy.h ('k') | chrome/test/ui/ui_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698