summaryrefslogtreecommitdiffstats
path: root/chrome/views/message_box_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/views/message_box_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/views/message_box_view.h')
-rw-r--r--chrome/views/message_box_view.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/chrome/views/message_box_view.h b/chrome/views/message_box_view.h
index 12ed15d..ad9a8fd 100644
--- a/chrome/views/message_box_view.h
+++ b/chrome/views/message_box_view.h
@@ -16,7 +16,7 @@
// This class displays a message box within a constrained window
// with options for a message, a prompt, and OK and Cancel buttons.
-class MessageBoxView : public ChromeViews::View {
+class MessageBoxView : public views::View {
public:
// flags
static const int kFlagHasOKButton = 0x1;
@@ -61,8 +61,8 @@ class MessageBoxView : public ChromeViews::View {
protected:
// Layout and Painting functions.
virtual void ViewHierarchyChanged(bool is_add,
- ChromeViews::View* parent,
- ChromeViews::View* child);
+ views::View* parent,
+ views::View* child);
private:
// Called after ViewHierarchyChanged's call stack unwinds and returns to the
@@ -78,16 +78,16 @@ class MessageBoxView : public ChromeViews::View {
void ResetLayoutManager();
// Message for the message box.
- ChromeViews::Label* message_label_;
+ views::Label* message_label_;
// Input text field for the message box.
- ChromeViews::TextField* prompt_field_;
+ views::TextField* prompt_field_;
// Icon displayed in the upper left corner of the message box.
- ChromeViews::ImageView* icon_;
+ views::ImageView* icon_;
// Checkbox for the message box.
- ChromeViews::CheckBox* check_box_;
+ views::CheckBox* check_box_;
// Maximum width of the message label.
int message_width_;