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

Unified Diff: chrome/common/chrome_switches.cc

Issue 2001009: Created a new process type called the service process to host background task... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 7 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
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/sandbox_init_wrapper_mac.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/chrome_switches.cc
===================================================================
--- chrome/common/chrome_switches.cc (revision 46945)
+++ chrome/common/chrome_switches.cc (working copy)
@@ -72,6 +72,9 @@
// as a dependent process of the Chrome Frame plugin.
const char kChromeFrame[] = "chrome-frame";
+// The unique id to be used for this cloud print proxy instance.
+const char kCloudPrintProxyId[] = "cloud-print-proxy-id";
+
// The Country we should use. This is normally obtained from the operating
// system during first run and cached in the preferences afterwards. This is a
// string value, the 2 letter code from ISO 3166-1.
@@ -247,6 +250,13 @@
// Enables the benchmarking extensions.
const char kEnableBenchmarking[] = "enable-benchmarking";
+// This applies only when the process type is "service". Enables the
+// Cloud Print Proxy component within the service process.
+const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy";
+
+// Enables the Cloud Print dialog hosting code.
+const char kEnableCloudPrint[] = "enable-cloud-print";
+
// Enables extension APIs that are in development.
const char kEnableExperimentalExtensionApis[] =
"enable-experimental-extension-apis";
@@ -677,6 +687,12 @@
// from the omnibox.
const char kSearchInOmniboxHint[] = "search-in-omnibox-hint";
+// Causes the process to run as a service process.
+const char kServiceProcess[] = "service";
+
+// The LSID of the account to use for the service process.
+const char kServiceAccountLsid[] = "service-account-lsid";
+
// See kHideIcons.
const char kShowIcons[] = "show-icons";
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/sandbox_init_wrapper_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698