Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(942)

Unified Diff: ui/base/animation/throb_animation.h

Issue 8468021: Add OVERRIDE to ui/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes n stuff Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/base/animation/slide_animation.h ('k') | ui/base/test/ui_cocoa_test_helper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/animation/throb_animation.h
diff --git a/ui/base/animation/throb_animation.h b/ui/base/animation/throb_animation.h
index ff6faa093973b442a270ff79b5b6a736ed2c3171..46aae2ffb2ce36843e023022c0e143fad2e589a8 100644
--- a/ui/base/animation/throb_animation.h
+++ b/ui/base/animation/throb_animation.h
@@ -30,12 +30,12 @@ class UI_EXPORT ThrobAnimation : public SlideAnimation {
void SetThrobDuration(int duration) { throb_duration_ = duration; }
// Overridden to reset to the slide duration.
- virtual void Reset();
- virtual void Show();
- virtual void Hide();
+ virtual void Reset() OVERRIDE;
+ virtual void Show() OVERRIDE;
+ virtual void Hide() OVERRIDE;
// Overridden to maintain the slide duration.
- virtual void SetSlideDuration(int duration);
+ virtual void SetSlideDuration(int duration) OVERRIDE;
// The number of cycles remaining until the animation stops.
void set_cycles_remaining(int value) { cycles_remaining_ = value; }
@@ -43,7 +43,7 @@ class UI_EXPORT ThrobAnimation : public SlideAnimation {
protected:
// Overriden to continually throb (assuming we're throbbing).
- virtual void Step(base::TimeTicks time_now);
+ virtual void Step(base::TimeTicks time_now) OVERRIDE;
private:
// Resets state such that we behave like SlideAnimation.
« no previous file with comments | « ui/base/animation/slide_animation.h ('k') | ui/base/test/ui_cocoa_test_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698