diff options
author | calamity@chromium.org <calamity@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-02 10:21:59 +0000 |
---|---|---|
committer | calamity@chromium.org <calamity@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-02 10:21:59 +0000 |
commit | 59b6624aec61555a9f8f75331ed09b280ab705ef (patch) | |
tree | f479054c9a4ae5643f59665d616f508ab41df561 /chrome/common | |
parent | 55cedda3b470fb4db983dd8c16b3d5a551d5873d (diff) | |
download | chromium_src-59b6624aec61555a9f8f75331ed09b280ab705ef.zip chromium_src-59b6624aec61555a9f8f75331ed09b280ab705ef.tar.gz chromium_src-59b6624aec61555a9f8f75331ed09b280ab705ef.tar.bz2 |
Add --enable-app-list as a switch
This switch replaces --show-app-list-shortcut which was removed in https://chromiumcodereview.appspot.com/13940006/ but we want similar functionality for testing.
This switch will create shortcuts for the app launcher and register that the app launcher has been enabled.
BUG=236243
Review URL: https://chromiumcodereview.appspot.com/13943015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@197883 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/chrome_switches.cc | 3 | ||||
-rw-r--r-- | chrome/common/chrome_switches.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index 36f3921..30f5b36 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -1633,6 +1633,9 @@ const char kUseMockKeychain[] = "use-mock-keychain"; #endif #if defined(OS_WIN) +// 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"; diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h index cf3010f..cd71d1f 100644 --- a/chrome/common/chrome_switches.h +++ b/chrome/common/chrome_switches.h @@ -460,6 +460,7 @@ extern const char kUseMockKeychain[]; #endif #if defined(OS_WIN) +extern const char kEnableAppList[]; extern const char kForceImmersive[]; extern const char kForceDesktop[]; extern const char kOverlappedRead[]; |