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

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

Issue 5967003: Refactor UITestBase/ProxyLauncher. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fix issues and clean up. Created 9 years, 12 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/automation_proxy_uitest.cc
diff --git a/chrome/test/automation/automation_proxy_uitest.cc b/chrome/test/automation/automation_proxy_uitest.cc
index 465b61023a1afc3f33462a0afa769b24cf2fc91f..2bab9ab9c8f18e8686222435c77848d0a3e40764 100644
--- a/chrome/test/automation/automation_proxy_uitest.cc
+++ b/chrome/test/automation/automation_proxy_uitest.cc
@@ -63,8 +63,21 @@ class ExternalTabUITestMockLauncher : public ProxyLauncher {
return *mock_;
}
- void InitializeConnection(UITestBase* ui_test_base) const {
- ui_test_base->LaunchBrowserAndServer();
+ void InitializeConnection(const CommandLine& arguments,
+ bool include_testing_id,
+ bool clear_profile,
+ FilePath& template_user_data,
+ ProfileType profile_type,
+ FilePath browser_directory,
+ bool show_window,
+ bool wait_for_initial_loads,
+ base::TimeTicks* browser_launch_time,
+ base::ProcessHandle* process,
+ base::ProcessId* process_id) {
+ LaunchBrowserAndServer(arguments, include_testing_id, clear_profile,
+ template_user_data, profile_type, browser_directory,
+ show_window, wait_for_initial_loads,
+ browser_launch_time, process, process_id);
}
std::string PrefixedChannelID() const {

Powered by Google App Engine
This is Rietveld 408576698