diff options
author | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-12 22:18:28 +0000 |
---|---|---|
committer | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-12 22:18:28 +0000 |
commit | 5ebc4b2de52f4eab4c814066ea4ac67b8992d06c (patch) | |
tree | e65e2f34ae4981e5d2f8b527d29fbd6ae525f793 /chrome/common/chrome_switches.cc | |
parent | c90ce8463d6e839010bf0b17ef1b4c0c54c8f067 (diff) | |
download | chromium_src-5ebc4b2de52f4eab4c814066ea4ac67b8992d06c.zip chromium_src-5ebc4b2de52f4eab4c814066ea4ac67b8992d06c.tar.gz chromium_src-5ebc4b2de52f4eab4c814066ea4ac67b8992d06c.tar.bz2 |
Revert 47079 - Shorten several appsrelated flags. "256 characters should be enough for anyone's shortcut flags!"
Review URL: http://codereview.chromium.org/1991009
TBR=aa@chromium.org
Review URL: http://codereview.chromium.org/2010013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47081 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/chrome_switches.cc')
-rw-r--r-- | chrome/common/chrome_switches.cc | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index 1bc4a51..a3e5df5 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -41,16 +41,13 @@ const char kAppId[] = "app-id"; const char kAppLaunchAsPanel[] = "app-launch-as-panel"; // Makes the app launcher popup when a new tab is created. -const char kAppsPanel[] = "apps-panel"; +const char kAppLauncherForNewTab[] = "app-launcher-new-tab"; // The title to use for the gallery link in the app launcher. -const char kAppsGalleryTitle[] = "apps-gallery-title"; +const char kAppLauncherGalleryTitle[] = "app-launcher-gallery-title"; // The URL to use for the gallery link in the app launcher. -const char kAppsGalleryURL[] = "apps-gallery-url"; - -// Disable throbber for extension apps. -const char kAppsNoThrob[] = "apps-no-throb"; +const char kAppLauncherGalleryURL[] = "app-launcher-gallery-url"; // Whether to display the "Debug" link for app launch behavior. const char kAppsDebug[] = "apps-debug"; @@ -208,6 +205,10 @@ const char kDisableSyncThemes[] = "disable-sync-themes"; // Disable syncing of typed urls. const char kDisableSyncTypedUrls[] = "disable-sync-typed-urls"; +// Disable throbber for extension apps. +const char kDisableThrobberForExtensionApps[] = + "disable-throbber-for-extension-apps"; + // Enables the backend service for web resources, used in the new tab page for // loading tips and recommendations from a JSON feed. const char kDisableWebResources[] = "disable-web-resources"; @@ -244,9 +245,6 @@ const char kDumpHistogramsOnExit[] = "dump-histograms-on-exit"; // Enables AeroPeek for each tab. (This switch only works on Windows 7). const char kEnableAeroPeekTabs[] = "enable-aero-peek-tabs"; -// Enable experimental extension apps. -const char kEnableApps[] = "enable-apps"; - // Enable the inclusion of non-standard ports when generating the Kerberos SPN // in response to a Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN // for more background. @@ -269,6 +267,9 @@ const char kEnableExperimentalExtensionApis[] = // Enable experimental WebGL support. const char kEnableExperimentalWebGL[] = "enable-webgl"; +// Enable experimental extension apps. +const char kEnableExtensionApps[] = "enable-extension-apps"; + // Enable experimental timeline API. const char kEnableExtensionTimelineApi[] = "enable-extension-timeline-api"; |