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

Unified Diff: chrome/common/chrome_switches.cc

Issue 18421007: [win] Set the profile path when enabling the app launcher. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase, and fix a few things 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/common/chrome_switches.cc
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc
index 9eda7bbd97dfec6ec8435dc4908ceed2f4400dc2..0bce1a03ce617627372cb5069499e78a2aceec46 100644
--- a/chrome/common/chrome_switches.cc
+++ b/chrome/common/chrome_switches.cc
@@ -262,9 +262,10 @@ const char kDiagnostics[] = "diagnostics";
// Sets the output format for diagnostic modes enabled by diagnostics flag.
const char kDiagnosticsFormat[] = "diagnostics-format";
-// Replaces the audio IPC layer for <audio> and <video> with a mock audio
tapted 2013/07/11 07:02:02 note: this was previously attached to a kDisableAu
-// device, useful when using remote desktop or machines without sound cards.
-// This is temporary until we fix the underlying problem.
+// If set, the app list will be disabled at startup. Note this doesn't prevent
+// the app list from running, it just makes Chrome think the app list hasn't
+// been enabled (as in kEnableAppList) yet.
+const char kDisableAppList[] = "disable-app-list";
// Disables the experimental asynchronous DNS client.
const char kDisableAsyncDns[] = "disable-async-dns";
@@ -478,6 +479,9 @@ const char kDnsPrefetchDisable[] = "dns-prefetch-disable";
// Enables the <adview> tag in packaged apps.
const char kEnableAdview[] = "enable-adview";
+// If set, the app list will be enabled as if enabled from CWS.
+const char kEnableAppList[] = "enable-app-list";
+
// Enables specifying a "src" attribute on <adview> elements
// (for testing purposes, to skip the whitelist).
const char kEnableAdviewSrcAttribute[] = "enable-adview-src-attribute";
@@ -1497,11 +1501,6 @@ const char kPasswordStore[] = "password-store";
#endif // OS_POSIX
#if defined(OS_MACOSX)
-// Enables the app list OSX .app shim, for showing the app list. If the flag is
-// not present, Chrome will check if the shim exists at startup, and delete it
-// if it does.
-const char kEnableAppListShim[] = "enable-app-list-shim";
-
// Enable to allow creation and launch of app shims for platform apps.
const char kEnableAppShims[] = "enable-app-shims";
@@ -1525,14 +1524,6 @@ const char kUseMockKeychain[] = "use-mock-keychain";
#endif
#if defined(OS_WIN)
-// If set, the app list will be disabled at startup. Note this doesn't prevent
-// the app list from running, it just makes Chrome think the app list hasn't
-// been enabled (as in kEnableAppList) yet.
-const char kDisableAppList[] = "disable-app-list";
-
-// If set, the app list will be enabled as if enabled from CWS.
-const char kEnableAppList[] = "enable-app-list";
-
// For the DelegateExecute verb handler to launch Chrome in metro mode on
// Windows 8 and higher. Used when relaunching metro Chrome.
const char kForceImmersive[] = "force-immersive";
« chrome/browser/ui/app_list/app_list_service.h ('K') | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698