diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-16 23:51:38 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-16 23:51:38 +0000 |
commit | c2dacc9ec41232903ba700c6aef5ef98bfcb8af8 (patch) | |
tree | 4aa4d7100862c64bdd92d70e6323001beb19edb7 /chrome/browser/views/first_run_view.h | |
parent | d66e710ec668e34271def44d7f0416260657171c (diff) | |
download | chromium_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/first_run_view.h')
-rw-r--r-- | chrome/browser/views/first_run_view.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/chrome/browser/views/first_run_view.h b/chrome/browser/views/first_run_view.h index 45e576a..5565b9a 100644 --- a/chrome/browser/views/first_run_view.h +++ b/chrome/browser/views/first_run_view.h @@ -11,7 +11,7 @@ #include "chrome/views/link.h" #include "chrome/views/view.h" -namespace ChromeViews { +namespace views { class Label; class Window; } @@ -22,26 +22,26 @@ class ImporterHost; // FirstRunView implements the dialog that welcomes to user to Chrome after // a fresh install. class FirstRunView : public FirstRunViewBase, - public ChromeViews::LinkController, + public views::LinkController, public FirstRunCustomizeView::CustomizeViewObserver { public: explicit FirstRunView(Profile* profile); virtual ~FirstRunView(); - // Overridden from ChromeViews::View: + // Overridden from views::View: virtual gfx::Size GetPreferredSize(); virtual void Layout(); - // Overridden from ChromeViews::DialogDelegate: + // Overridden from views::DialogDelegate: virtual bool Accept(); virtual bool Cancel(); - // Overridden from ChromeViews::WindowDelegate: + // Overridden from views::WindowDelegate: virtual std::wstring GetWindowTitle() const; - virtual ChromeViews::View* GetContentsView(); + virtual views::View* GetContentsView(); - // Overridden from ChromeViews::LinkActivated: - virtual void LinkActivated(ChromeViews::Link* source, int event_flags); + // Overridden from views::LinkActivated: + virtual void LinkActivated(views::Link* source, int event_flags); // Overridden from FirstRunCustomizeView: virtual void CustomizeAccepted(); @@ -54,11 +54,11 @@ class FirstRunView : public FirstRunViewBase, // Creates the dialog that allows the user to customize work items. void OpenCustomizeDialog(); - ChromeViews::Label* welcome_label_; - ChromeViews::Label* actions_label_; - ChromeViews::Label* actions_import_; - ChromeViews::Label* actions_shorcuts_; - ChromeViews::Link* customize_link_; + views::Label* welcome_label_; + views::Label* actions_label_; + views::Label* actions_import_; + views::Label* actions_shorcuts_; + views::Link* customize_link_; bool customize_selected_; DISALLOW_COPY_AND_ASSIGN(FirstRunView); |