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

Unified Diff: ui/base/animation/multi_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/linear_animation.h ('k') | ui/base/animation/slide_animation.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/animation/multi_animation.h
diff --git a/ui/base/animation/multi_animation.h b/ui/base/animation/multi_animation.h
index ff4cd5dbee17492b598b8702bd769b80afae41b7..240c6da691f819fe4477f51d9b3fbc815cd0f293 100644
--- a/ui/base/animation/multi_animation.h
+++ b/ui/base/animation/multi_animation.h
@@ -55,15 +55,15 @@ class UI_EXPORT MultiAnimation : public Animation {
// Returns the current value. The current value for a MultiAnimation is
// determined from the tween type of the current part.
- virtual double GetCurrentValue() const;
+ virtual double GetCurrentValue() const OVERRIDE;
// Returns the index of the current part.
size_t current_part_index() const { return current_part_index_; }
protected:
// Animation overrides.
- virtual void Step(base::TimeTicks time_now);
- virtual void SetStartTime(base::TimeTicks start_time);
+ virtual void Step(base::TimeTicks time_now) OVERRIDE;
+ virtual void SetStartTime(base::TimeTicks start_time) OVERRIDE;
private:
// Returns the part containing the specified time. |time_ms| is reset to be
« no previous file with comments | « ui/base/animation/linear_animation.h ('k') | ui/base/animation/slide_animation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698