From 478ff2ed6a244658c0a30d6cbfff1a9046b9ba9d Mon Sep 17 00:00:00 2001 From: "tc@google.com" Date: Tue, 21 Apr 2009 23:49:18 +0000 Subject: Reland r14146 which refactors DialogButton into cross platform code. This is the same as the last change except I renamed class MessageBox to class MessageBoxFlags to avoid conflicting with the same name in windows.h. Review URL: http://codereview.chromium.org/87065 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@14159 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/views/uninstall_dialog.cc | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'chrome/browser/views/uninstall_dialog.cc') diff --git a/chrome/browser/views/uninstall_dialog.cc b/chrome/browser/views/uninstall_dialog.cc index da54ca8..51e7023 100644 --- a/chrome/browser/views/uninstall_dialog.cc +++ b/chrome/browser/views/uninstall_dialog.cc @@ -30,10 +30,6 @@ bool UninstallDialog::Cancel() { return true; } -int UninstallDialog::GetDialogButtons() const { - return DIALOGBUTTON_OK | DIALOGBUTTON_CANCEL; -} - std::wstring UninstallDialog::GetWindowTitle() const { return l10n_util::GetString(IDS_UNINSTALL_CHROME); } @@ -50,7 +46,8 @@ UninstallDialog::UninstallDialog(int& user_selection) : user_selection_(user_selection) { // Also deleted when the window closes. message_box_view_ = new MessageBoxView( - MessageBox::kIsConfirmMessageBox | MessageBox::kAutoDetectAlignment, + MessageBoxFlags::kIsConfirmMessageBox | + MessageBoxFlags::kAutoDetectAlignment, l10n_util::GetString(IDS_UNINSTALL_VERIFY).c_str(), std::wstring()); message_box_view_->SetCheckBoxLabel( -- cgit v1.1