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

Unified Diff: cloud_print/service/win/chrome_launcher.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: cloud_print/service/win/chrome_launcher.cc
diff --git a/cloud_print/service/win/chrome_launcher.cc b/cloud_print/service/win/chrome_launcher.cc
index 1d7b26d6bd068ec869c9df5412bc564b31f2b5ed..644bdc6603bb8336d141f179025788baed317638 100644
--- a/cloud_print/service/win/chrome_launcher.cc
+++ b/cloud_print/service/win/chrome_launcher.cc
@@ -234,7 +234,7 @@ void ChromeLauncher::Run() {
cmd.AppendSwitch(switches::kDisableGpu);
cmd.AppendSwitch(switches::kDisableSoftwareRasterizer);
cmd.AppendSwitch(switches::kDisableSync);
- cmd.AppendSwitch(switches::kNoFirstRun);
+ cmd.AppendSwitch(switches::kSkipFirstRun);
cmd.AppendSwitch(switches::kNoStartupWindow);
base::win::ScopedHandle chrome_handle;
@@ -311,7 +311,7 @@ std::string ChromeLauncher::CreateServiceStateFile(
cmd.AppendSwitch(switches::kDisableExtensions);
cmd.AppendSwitch(switches::kDisableSync);
cmd.AppendSwitch(switches::kNoDefaultBrowserCheck);
- cmd.AppendSwitch(switches::kNoFirstRun);
+ cmd.AppendSwitch(switches::kSkipFirstRun);
cmd.AppendArg(GetCloudPrintServiceEnableURLWithSignin(proxy_id).spec());

Powered by Google App Engine
This is Rietveld 408576698