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

Unified Diff: cc/animation/animation_curve.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
« no previous file with comments | « cc/PRESUBMIT.py ('k') | cc/animation/keyframed_animation_curve.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/animation/animation_curve.h
diff --git a/cc/animation/animation_curve.h b/cc/animation/animation_curve.h
index 72aadefbf8e8f72a1b360b9c58151245e67c6cea..ca53e442d76bf188f676fc662ee0c38770ee3adb 100644
--- a/cc/animation/animation_curve.h
+++ b/cc/animation/animation_curve.h
@@ -50,7 +50,7 @@ class CC_EXPORT ColorAnimationCurve : public AnimationCurve {
virtual SkColor GetValue(double t) const = 0;
// Partial Animation implementation.
- virtual CurveType Type() const OVERRIDE;
+ virtual CurveType Type() const override;
};
class CC_EXPORT FloatAnimationCurve : public AnimationCurve {
@@ -60,7 +60,7 @@ class CC_EXPORT FloatAnimationCurve : public AnimationCurve {
virtual float GetValue(double t) const = 0;
// Partial Animation implementation.
- virtual CurveType Type() const OVERRIDE;
+ virtual CurveType Type() const override;
};
class CC_EXPORT TransformAnimationCurve : public AnimationCurve {
@@ -86,7 +86,7 @@ class CC_EXPORT TransformAnimationCurve : public AnimationCurve {
virtual bool MaximumScale(float* max_scale) const = 0;
// Partial Animation implementation.
- virtual CurveType Type() const OVERRIDE;
+ virtual CurveType Type() const override;
};
class CC_EXPORT FilterAnimationCurve : public AnimationCurve {
@@ -97,7 +97,7 @@ class CC_EXPORT FilterAnimationCurve : public AnimationCurve {
virtual bool HasFilterThatMovesPixels() const = 0;
// Partial Animation implementation.
- virtual CurveType Type() const OVERRIDE;
+ virtual CurveType Type() const override;
};
} // namespace cc
« no previous file with comments | « cc/PRESUBMIT.py ('k') | cc/animation/keyframed_animation_curve.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698