summaryrefslogtreecommitdiffstats
path: root/chrome/browser/views/first_run_view_base.cc
diff options
context:
space:
mode:
authortc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-21 22:17:33 +0000
committertc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-04-21 22:17:33 +0000
commit806aeb954d302328cc75bda71331474d8634675b (patch)
tree9565300c48ab1ea34b66624222ef979734f68b00 /chrome/browser/views/first_run_view_base.cc
parent8f0a23470f47090c601078952b77c5b520c595c2 (diff)
downloadchromium_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/first_run_view_base.cc')
-rw-r--r--chrome/browser/views/first_run_view_base.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/browser/views/first_run_view_base.cc b/chrome/browser/views/first_run_view_base.cc
index c3df0e2..2115d65 100644
--- a/chrome/browser/views/first_run_view_base.cc
+++ b/chrome/browser/views/first_run_view_base.cc
@@ -151,8 +151,9 @@ bool FirstRunViewBase::HasAlwaysOnTopMenu() const {
return false;
}
-std::wstring FirstRunViewBase::GetDialogButtonLabel(DialogButton button) const {
- if (DIALOGBUTTON_OK == button)
+std::wstring FirstRunViewBase::GetDialogButtonLabel(
+ MessageBox::DialogButton button) const {
+ if (MessageBox::DIALOGBUTTON_OK == button)
return l10n_util::GetString(IDS_FIRSTRUN_DLG_OK);
// The other buttons get the default text.
return std::wstring();