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

Unified Diff: chrome_frame/test/chrome_frame_test_utils.cc

Issue 21150006: Introduce --cancel-first-run and reduce the strength of --no-first-run. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add first_run::IsFirstRunSuppressed() Created 7 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_frame/test/chrome_frame_test_utils.cc
diff --git a/chrome_frame/test/chrome_frame_test_utils.cc b/chrome_frame/test/chrome_frame_test_utils.cc
index 60410301f1a30c420e395c3cbcbf8c2023d1cca6..dafd5238af7fc120464975a18083c93c1b246bad 100644
--- a/chrome_frame/test/chrome_frame_test_utils.cc
+++ b/chrome_frame/test/chrome_frame_test_utils.cc
@@ -197,7 +197,7 @@ base::ProcessHandle LaunchChrome(const std::wstring& url,
path = path.AppendASCII(kChromeImageName);
CommandLine cmd(path);
- cmd.AppendSwitch(switches::kNoFirstRun);
+ cmd.AppendSwitch(switches::kSkipFirstRun);
if (!user_data_dir.empty())
cmd.AppendSwitchPath(switches::kUserDataDir, user_data_dir);
cmd.AppendArgNative(url);

Powered by Google App Engine
This is Rietveld 408576698