summaryrefslogtreecommitdiffstats
path: root/chrome/browser/views/info_bar_confirm_view.h
diff options
context:
space:
mode:
authorben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-16 23:51:38 +0000
committerben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-16 23:51:38 +0000
commitc2dacc9ec41232903ba700c6aef5ef98bfcb8af8 (patch)
tree4aa4d7100862c64bdd92d70e6323001beb19edb7 /chrome/browser/views/info_bar_confirm_view.h
parentd66e710ec668e34271def44d7f0416260657171c (diff)
downloadchromium_src-c2dacc9ec41232903ba700c6aef5ef98bfcb8af8.zip
chromium_src-c2dacc9ec41232903ba700c6aef5ef98bfcb8af8.tar.gz
chromium_src-c2dacc9ec41232903ba700c6aef5ef98bfcb8af8.tar.bz2
Rename ChromeViews namespace to views
http://crbug.com/2188 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3495 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views/info_bar_confirm_view.h')
-rw-r--r--chrome/browser/views/info_bar_confirm_view.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/views/info_bar_confirm_view.h b/chrome/browser/views/info_bar_confirm_view.h
index cfcd483..586e734 100644
--- a/chrome/browser/views/info_bar_confirm_view.h
+++ b/chrome/browser/views/info_bar_confirm_view.h
@@ -12,7 +12,7 @@
// default), and a close button. Can be inherited to override the behavior
// of button presses.
class InfoBarConfirmView : public InfoBarMessageView,
- public ChromeViews::NativeButton::Listener {
+ public views::NativeButton::Listener {
public:
explicit InfoBarConfirmView(const std::wstring& message);
@@ -27,7 +27,7 @@ class InfoBarConfirmView : public InfoBarMessageView,
// ButtonListener Method:
// Invokes OKButtonPressed or CancelButtonPressed() when their
// respective buttons are pressed.
- virtual void ButtonPressed(ChromeViews::NativeButton* sender);
+ virtual void ButtonPressed(views::NativeButton* sender);
// Sets the label on the OK button, if it exists.
void SetOKButtonLabel(const std::wstring& label);
@@ -54,9 +54,9 @@ class InfoBarConfirmView : public InfoBarMessageView,
// then call AddAllChildViews.
void Init();
- ChromeViews::NativeButton* ok_button_;
+ views::NativeButton* ok_button_;
- ChromeViews::NativeButton* cancel_button_;
+ views::NativeButton* cancel_button_;
DISALLOW_EVIL_CONSTRUCTORS(InfoBarConfirmView);
};