diff options
Diffstat (limited to 'chrome/browser/views/first_run_view_base.cc')
-rw-r--r-- | chrome/browser/views/first_run_view_base.cc | 5 |
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..08f30d3 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( + MessageBoxFlags::DialogButton button) const { + if (MessageBoxFlags::DIALOGBUTTON_OK == button) return l10n_util::GetString(IDS_FIRSTRUN_DLG_OK); // The other buttons get the default text. return std::wstring(); |