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

Unified Diff: ui/compositor/float_animation_curve_adapter.h

Issue 667923002: Standardize usage of virtual/override/final in ui/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « ui/compositor/compositor.cc ('k') | ui/compositor/layer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/compositor/float_animation_curve_adapter.h
diff --git a/ui/compositor/float_animation_curve_adapter.h b/ui/compositor/float_animation_curve_adapter.h
index 84a999250cb211db6fda604c24edd1d3462a9fec..1c7b8b336c3f0ec26269e9a0e019291f087505f8 100644
--- a/ui/compositor/float_animation_curve_adapter.h
+++ b/ui/compositor/float_animation_curve_adapter.h
@@ -18,12 +18,12 @@ class FloatAnimationCurveAdapter : public cc::FloatAnimationCurve {
float target_value,
base::TimeDelta duration);
- virtual ~FloatAnimationCurveAdapter() { }
+ ~FloatAnimationCurveAdapter() override {}
// FloatAnimationCurve implementation.
- virtual double Duration() const override;
- virtual scoped_ptr<cc::AnimationCurve> Clone() const override;
- virtual float GetValue(double t) const override;
+ double Duration() const override;
+ scoped_ptr<cc::AnimationCurve> Clone() const override;
+ float GetValue(double t) const override;
private:
gfx::Tween::Type tween_type_;
« no previous file with comments | « ui/compositor/compositor.cc ('k') | ui/compositor/layer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698