diff options
author | sail@chromium.org <sail@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-04 22:55:36 +0000 |
---|---|---|
committer | sail@chromium.org <sail@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-04 22:55:36 +0000 |
commit | 5e120024c2c6a5fd30b082263ccf462901c11bca (patch) | |
tree | bab88f5e6dfec11c5c67b6443b5c90846c712c7f /chrome/browser/ui/global_error.cc | |
parent | 920fb4b9d08547fbe25bb2544dfb47157db9fea1 (diff) | |
download | chromium_src-5e120024c2c6a5fd30b082263ccf462901c11bca.zip chromium_src-5e120024c2c6a5fd30b082263ccf462901c11bca.tar.gz chromium_src-5e120024c2c6a5fd30b082263ccf462901c11bca.tar.bz2 |
Fix ordering of buttons in protector search bubble on Mac
The root problem was that the error bubble on Windows and GTK were placing the accept and cancel button in the wrong order.
Fix was to correct the error bubble code and flip the protector labels.
Windows: http://imgur.com/RBD5h,JEekA,F6Due#0
Cocoa: http://imgur.com/RBD5h,JEekA,F6Due#1
GTK: http://imgur.com/RBD5h,JEekA,F6Due#2
BUG=100854
TEST=
Review URL: http://codereview.chromium.org/8458001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@108735 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/global_error.cc')
-rw-r--r-- | chrome/browser/ui/global_error.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/chrome/browser/ui/global_error.cc b/chrome/browser/ui/global_error.cc index bd817e5..f2cf17c 100644 --- a/chrome/browser/ui/global_error.cc +++ b/chrome/browser/ui/global_error.cc @@ -34,7 +34,3 @@ void GlobalError::ShowBubbleView(Browser* browser) { int GlobalError::GetBubbleViewIconResourceID() { return IDR_INPUT_ALERT; } - -bool GlobalError::IsAcceptButtonDefault() { - return true; -} |