diff options
author | msw@chromium.org <msw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-15 08:48:57 +0000 |
---|---|---|
committer | msw@chromium.org <msw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-05-15 08:48:57 +0000 |
commit | a81874a595aad2fa955342e3c8e47ba5cbf0e441 (patch) | |
tree | d771915daf483fa796f78289fc5f0efaaf5d571f /ui | |
parent | b87b0c84b5545817e7338d1a2e220863878343bb (diff) | |
download | chromium_src-a81874a595aad2fa955342e3c8e47ba5cbf0e441.zip chromium_src-a81874a595aad2fa955342e3c8e47ba5cbf0e441.tar.gz chromium_src-a81874a595aad2fa955342e3c8e47ba5cbf0e441.tar.bz2 |
Enable the new dialog style by default; etc.
Enables the new dialog and button styles by default.
Please file any appearance/behavior issues against msw/wittman.
(disable: about:flags "New Dialog Style" or --disable-new-dialog-style)
Mike Wittman and I are mid-audit of Win/CrOS dialogs, expect some glitches:
- Some dialogs will have black/clear borders and need layout adjustments.
- Some other UI will need adjustments to accomodate new button styling.
BUG=166075
TEST=Dialogs and buttons employ their new styling; only minor issues remain.
R=sky@chromium.org,wittman@chromium.org
Review URL: https://chromiumcodereview.appspot.com/14646037
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@200206 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui')
-rw-r--r-- | ui/base/ui_base_switches_util.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/base/ui_base_switches_util.cc b/ui/base/ui_base_switches_util.cc index d7f8400..c541a9b 100644 --- a/ui/base/ui_base_switches_util.cc +++ b/ui/base/ui_base_switches_util.cc @@ -25,7 +25,7 @@ bool IsNewDialogStyleEnabled() { return false; if (command_line->HasSwitch(switches::kEnableNewDialogStyle)) return true; - return false; + return true; } } // namespace switches |