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

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

Issue 6111011: Move launcher_.reset() from UITestBase constructor to SetUp(). (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Move launcher_.reset() from constructor into SetUp(). Created 9 years, 11 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.h
diff --git a/chrome/test/automation/proxy_launcher.h b/chrome/test/automation/proxy_launcher.h
index 497d376445b8e8fcabea19d3a6b0486a43768bbe..97d2dd48d1ebbea60d85f6af86bf8621ecd00360 100644
--- a/chrome/test/automation/proxy_launcher.h
+++ b/chrome/test/automation/proxy_launcher.h
@@ -42,13 +42,13 @@ class ProxyLauncher {
};
// POD containing state variables that determine how to launch browser.
- typedef struct {
+ struct LaunchState {
// If true the profile is cleared before launching.
bool clear_profile;
// If set, the profiles in this path are copied
// into the user data directory for the test.
- FilePath& template_user_data;
+ FilePath template_user_data;
// Profile theme type.
ProfileType profile_type;
@@ -57,14 +57,14 @@ class ProxyLauncher {
FilePath browser_directory;
// Command line arguments passed to the browser.
- CommandLine& arguments;
+ CommandLine arguments;
// Should we supply the testing channel id on the command line?
bool include_testing_id;
// If true, the window is shown. Otherwise it is hidden.
bool show_window;
- } LaunchState;
+ };
ProxyLauncher();

Powered by Google App Engine
This is Rietveld 408576698