summaryrefslogtreecommitdiffstats
path: root/chrome/browser/views/clear_browsing_data.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/views/clear_browsing_data.cc')
-rw-r--r--chrome/browser/views/clear_browsing_data.cc13
1 files changed, 7 insertions, 6 deletions
diff --git a/chrome/browser/views/clear_browsing_data.cc b/chrome/browser/views/clear_browsing_data.cc
index 5a0df99..d27c5b0 100644
--- a/chrome/browser/views/clear_browsing_data.cc
+++ b/chrome/browser/views/clear_browsing_data.cc
@@ -236,21 +236,22 @@ void ClearBrowsingDataView::ViewHierarchyChanged(bool is_add,
// ClearBrowsingDataView, views::DialogDelegate implementation:
std::wstring ClearBrowsingDataView::GetDialogButtonLabel(
- DialogButton button) const {
- if (button == DIALOGBUTTON_OK) {
+ MessageBox::DialogButton button) const {
+ if (button == MessageBox::DIALOGBUTTON_OK) {
return l10n_util::GetString(IDS_CLEAR_BROWSING_DATA_COMMIT);
- } else if (button == DIALOGBUTTON_CANCEL) {
+ } else if (button == MessageBox::DIALOGBUTTON_CANCEL) {
return l10n_util::GetString(IDS_CLOSE);
} else {
return std::wstring();
}
}
-bool ClearBrowsingDataView::IsDialogButtonEnabled(DialogButton button) const {
+bool ClearBrowsingDataView::IsDialogButtonEnabled(
+ MessageBox::DialogButton button) const {
if (delete_in_progress_)
return false;
- if (button == DIALOGBUTTON_OK) {
+ if (button == MessageBox::DIALOGBUTTON_OK) {
return del_history_checkbox_->checked() ||
del_downloads_checkbox_->checked() ||
del_cache_checkbox_->checked() ||
@@ -287,7 +288,7 @@ std::wstring ClearBrowsingDataView::GetWindowTitle() const {
}
bool ClearBrowsingDataView::Accept() {
- if (!IsDialogButtonEnabled(DIALOGBUTTON_OK)) {
+ if (!IsDialogButtonEnabled(MessageBox::DIALOGBUTTON_OK)) {
return false;
}