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

Unified Diff: chrome/test/ui/named_interface_uitest.cc

Issue 7523060: Let pyauto create an attached webdriver instance to manipulate web pages. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: move bools into struct Created 9 years, 5 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/ui/named_interface_uitest.cc
diff --git a/chrome/test/ui/named_interface_uitest.cc b/chrome/test/ui/named_interface_uitest.cc
index 6f94722a690c1511139d9580eacfd52f7b88c89b..614243ed11f5ce0f39ebdf3b0a0eefedc7162ad6 100644
--- a/chrome/test/ui/named_interface_uitest.cc
+++ b/chrome/test/ui/named_interface_uitest.cc
@@ -27,7 +27,11 @@ class NamedInterfaceTest : public UITest {
if (channel_path.empty())
channel_path = ProxyLauncher::kDefaultInterfacePath;
- return new NamedProxyLauncher(channel_path, true, true);
+ NamedProxyLauncher::InitParams params;
+ params.launch_browser = true;
+ params.disconnect_on_failure = true;
+ params.wait_for_server_channel = true;
+ return new NamedProxyLauncher(channel_path, params);
}
};

Powered by Google App Engine
This is Rietveld 408576698