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

Unified Diff: ui/base/animation/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 | « no previous file | ui/base/animation/linear_animation.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/animation/animation.h
diff --git a/ui/base/animation/animation.h b/ui/base/animation/animation.h
index 3b8288d8ec70505f8a1ebf0c68b9493291d2d7c2..257e99b438930bc1a3695c14bcf9f1fb4ba1ce28 100644
--- a/ui/base/animation/animation.h
+++ b/ui/base/animation/animation.h
@@ -6,6 +6,7 @@
#define UI_BASE_ANIMATION_ANIMATION_H_
#pragma once
+#include "base/compiler_specific.h"
#include "base/memory/ref_counted.h"
#include "base/time.h"
#include "ui/base/animation/animation_container_element.h"
@@ -81,9 +82,9 @@ class UI_EXPORT Animation : public AnimationContainerElement {
AnimationDelegate* delegate() { return delegate_; }
// AnimationContainer::Element overrides
- virtual void SetStartTime(base::TimeTicks start_time);
+ virtual void SetStartTime(base::TimeTicks start_time) OVERRIDE;
virtual void Step(base::TimeTicks time_now) = 0;
- virtual base::TimeDelta GetTimerInterval() const;
+ virtual base::TimeDelta GetTimerInterval() const OVERRIDE;
private:
// Interval for the animation.
« no previous file with comments | « no previous file | ui/base/animation/linear_animation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698