diff options
author | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-21 22:17:33 +0000 |
---|---|---|
committer | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-04-21 22:17:33 +0000 |
commit | 806aeb954d302328cc75bda71331474d8634675b (patch) | |
tree | 9565300c48ab1ea34b66624222ef979734f68b00 /chrome/browser/views/input_window.cc | |
parent | 8f0a23470f47090c601078952b77c5b520c595c2 (diff) | |
download | chromium_src-806aeb954d302328cc75bda71331474d8634675b.zip chromium_src-806aeb954d302328cc75bda71331474d8634675b.tar.gz chromium_src-806aeb954d302328cc75bda71331474d8634675b.tar.bz2 |
Refactor DialogDelegate so the DialogButton enum is in cross platform
code.
This is mostly a find & replace in our code to use the new location
of the enum.
I also deleted some GetDialogButtons methods in child classes
because they were identical to the parent version in DialogDelegate.
This will allow more code to be enabled on linux/mac in the
automation provider.
Review URL: http://codereview.chromium.org/88008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@14146 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views/input_window.cc')
-rw-r--r-- | chrome/browser/views/input_window.cc | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/chrome/browser/views/input_window.cc b/chrome/browser/views/input_window.cc index 8d8c24f..a038f09 100644 --- a/chrome/browser/views/input_window.cc +++ b/chrome/browser/views/input_window.cc @@ -33,7 +33,7 @@ class ContentView : public views::View, } // views::DialogDelegate overrides: - virtual bool IsDialogButtonEnabled(DialogButton button) const; + virtual bool IsDialogButtonEnabled(MessageBox::DialogButton button) const; virtual bool Accept(); virtual bool Cancel(); virtual void WindowClosing(); @@ -77,9 +77,11 @@ class ContentView : public views::View, /////////////////////////////////////////////////////////////////////////////// // ContentView, views::DialogDelegate implementation: -bool ContentView::IsDialogButtonEnabled(DialogButton button) const { - if (button == DIALOGBUTTON_OK && !delegate_->IsValid(text_field_->GetText())) +bool ContentView::IsDialogButtonEnabled(MessageBox::DialogButton button) const { + if (button == MessageBox::DIALOGBUTTON_OK && + !delegate_->IsValid(text_field_->GetText())) { return false; + } return true; } |