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

Unified Diff: cc/animation/timing_function.h

Issue 628443002: replace OVERRIDE and FINAL with override and final in cc/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master Created 6 years, 2 months 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
Index: cc/animation/timing_function.h
diff --git a/cc/animation/timing_function.h b/cc/animation/timing_function.h
index a6d1aacecd49af03457ba99fa9cc8ec9ab0b7309..997486549d206b97e26f9b0e94d078bd766cb41f 100644
--- a/cc/animation/timing_function.h
+++ b/cc/animation/timing_function.h
@@ -35,10 +35,10 @@ class CC_EXPORT CubicBezierTimingFunction : public TimingFunction {
virtual ~CubicBezierTimingFunction();
// TimingFunction implementation.
- virtual float GetValue(double time) const OVERRIDE;
- virtual float Velocity(double time) const OVERRIDE;
- virtual void Range(float* min, float* max) const OVERRIDE;
- virtual scoped_ptr<TimingFunction> Clone() const OVERRIDE;
+ virtual float GetValue(double time) const override;
+ virtual float Velocity(double time) const override;
+ virtual void Range(float* min, float* max) const override;
+ virtual scoped_ptr<TimingFunction> Clone() const override;
protected:
CubicBezierTimingFunction(double x1, double y1, double x2, double y2);
« no previous file with comments | « cc/animation/scrollbar_animation_controller_thinning_unittest.cc ('k') | cc/base/delayed_unique_notifier_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698