diff options
author | jamescook@chromium.org <jamescook@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-05 17:47:28 +0000 |
---|---|---|
committer | jamescook@chromium.org <jamescook@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-05 17:47:28 +0000 |
commit | 50f9ad57874b74ebcffe92cd044a5ba1846a5f58 (patch) | |
tree | d53d96e5aedb7a96e07b0d652a2bb9ebaebe80e7 /ash/ash_switches.cc | |
parent | 7fbb534651b0c1827558198a6f8d898b659e5960 (diff) | |
download | chromium_src-50f9ad57874b74ebcffe92cd044a5ba1846a5f58.zip chromium_src-50f9ad57874b74ebcffe92cd044a5ba1846a5f58.tar.gz chromium_src-50f9ad57874b74ebcffe92cd044a5ba1846a5f58.tar.bz2 |
ash: Turn immersive mode off by default for M26
* Add back the --ash-immersive-mode flag
* Change about:flags to just turn immersive mode on/off
* Convert --ash-immersive-hide-tab-indicators as a command-line only flag
BUG=174060
TEST=browser_tests BrowserNonClientFrameViewAsh unit_tests ImmersiveModeController
Review URL: https://codereview.chromium.org/12194022
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@180720 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/ash_switches.cc')
-rw-r--r-- | ash/ash_switches.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ash/ash_switches.cc b/ash/ash_switches.cc index 1b9299e..150799a 100644 --- a/ash/ash_switches.cc +++ b/ash/ash_switches.cc @@ -76,7 +76,11 @@ const char kAshEnablePerAppLauncher[] = "ash-enable-per-app-launcher"; // Enables showing the tray bubble by dragging on the shelf. const char kAshEnableTrayDragging[] = "ash-enable-tray-dragging"; -// Hides the small tab indicators at the top of the screen. +// Enables immersive mode. +const char kAshImmersiveMode[] = "ash-immersive-mode"; + +// Enables immersive mode and hides the small tab indicators at the top of the +// screen. const char kAshImmersiveHideTabIndicators[] = "ash-immersive-hide-tab-indicators"; |