diff options
author | pkotwicz@chromium.org <pkotwicz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-03 17:37:48 +0000 |
---|---|---|
committer | pkotwicz@chromium.org <pkotwicz@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-03 17:37:48 +0000 |
commit | 7e925b4c67202d8cbae5d4425c4be928e6ad2bcb (patch) | |
tree | 5b11157350d8047e995cf28366e41e60e4351b61 /ash/ash_switches.cc | |
parent | 33d0ca5025e7f3e7c2584735e5ea01764528b998 (diff) | |
download | chromium_src-7e925b4c67202d8cbae5d4425c4be928e6ad2bcb.zip chromium_src-7e925b4c67202d8cbae5d4425c4be928e6ad2bcb.tar.gz chromium_src-7e925b4c67202d8cbae5d4425c4be928e6ad2bcb.tar.bz2 |
Turn on the alternate caption button style by default.
The alternate caption button style
- Has a dedicated minimize button
- Does not have a help bubble for the maximize button
- Crossfades the minimize buttons into buttons for snapping left and right after pressing and holding the size button
BUG=None
TEST=None
Review URL: https://codereview.chromium.org/183753002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@254496 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ash/ash_switches.cc')
-rw-r--r-- | ash/ash_switches.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ash/ash_switches.cc b/ash/ash_switches.cc index 764be1c..80e7654 100644 --- a/ash/ash_switches.cc +++ b/ash/ash_switches.cc @@ -172,8 +172,8 @@ const char kForceAshToDesktop[] = "ash-force-desktop"; #endif bool UseAlternateFrameCaptionButtonStyle() { - return CommandLine::ForCurrentProcess()-> - HasSwitch(kAshEnableAlternateFrameCaptionButtonStyle); + return !CommandLine::ForCurrentProcess()-> + HasSwitch(kAshDisableAlternateFrameCaptionButtonStyle); } bool UseAlternateShelfLayout() { |