diff options
author | jamescook@chromium.org <jamescook@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-06 01:30:12 +0000 |
---|---|---|
committer | jamescook@chromium.org <jamescook@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-06 01:30:12 +0000 |
commit | 8c426dc062e0c48c4060774bd1307ac343db380d (patch) | |
tree | 2666082f991f776fd8175fed6dc4019f2b399323 /ash/ash_switches.cc | |
parent | 7c63ff433ed23793bb2d4fd763b839de685eb5ae (diff) | |
download | chromium_src-8c426dc062e0c48c4060774bd1307ac343db380d.zip chromium_src-8c426dc062e0c48c4060774bd1307ac343db380d.tar.gz chromium_src-8c426dc062e0c48c4060774bd1307ac343db380d.tar.bz2 |
ash: Enable immersive fullscreen by default
BUG=176042
TEST=covered by browser_tests
Review URL: https://chromiumcodereview.appspot.com/12389043
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@186318 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/ash_switches.cc')
-rw-r--r-- | ash/ash_switches.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ash/ash_switches.cc b/ash/ash_switches.cc index bc0877d..9a8fb94 100644 --- a/ash/ash_switches.cc +++ b/ash/ash_switches.cc @@ -45,6 +45,9 @@ const char kAshDisableDisplayChangeLimiter[] = // Disables boot animation v2, go back to v1. const char kAshDisableBootAnimation2[] = "ash-disable-boot-animation2"; +// Disables immersive fullscreen mode. +const char kAshDisableImmersiveMode[] = "ash-disable-immersive-mode"; + // Enable advanced gestures (e.g. for window management). const char kAshEnableAdvancedGestures[] = "ash-enable-advanced-gestures"; @@ -79,11 +82,8 @@ const char kAshEnableTrayDragging[] = "ash-enable-tray-dragging"; // "1024x768*2" sets the scale factor to 2 for a high DPI display. const char kAshHostWindowBounds[] = "ash-host-window-bounds"; -// Enables immersive mode. -const char kAshImmersiveMode[] = "ash-immersive-mode"; - -// Enables immersive mode and hides the small tab indicators at the top of the -// screen. +// Hides the small tab indicators at the top of the screen during immersive +// fullscreen mode. const char kAshImmersiveHideTabIndicators[] = "ash-immersive-hide-tab-indicators"; |