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/views/throbber.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/views/throbber.h')
-rw-r--r-- | chrome/views/throbber.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/views/throbber.h b/chrome/views/throbber.h index 93d771c..f35fd7bd 100644 --- a/chrome/views/throbber.h +++ b/chrome/views/throbber.h @@ -13,9 +13,9 @@ class SkBitmap; -namespace ChromeViews { +namespace views { -class Throbber : public ChromeViews::View { +class Throbber : public View { public: // |frame_time_ms| is the amount of time that should elapse between frames // (in milliseconds) @@ -90,7 +90,7 @@ class CheckmarkThrobber : public Throbber { // If checked is false, the throbber stops spinning and displays nothing. void SetChecked(bool checked); - // Overridden from ChromeViews::Throbber: + // Overridden from Throbber: virtual void Paint(ChromeCanvas* canvas); private: @@ -107,7 +107,7 @@ class CheckmarkThrobber : public Throbber { DISALLOW_EVIL_CONSTRUCTORS(CheckmarkThrobber); }; -} // namespace ChromeViews +} // namespace views #endif // CHROME_VIEWS_THROBBER_H__ |