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

Unified Diff: Source/platform/transforms/InterpolatedTransformOperation.h

Issue 131003004: Update platform classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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: Source/platform/transforms/InterpolatedTransformOperation.h
diff --git a/Source/platform/transforms/InterpolatedTransformOperation.h b/Source/platform/transforms/InterpolatedTransformOperation.h
index 3eff4734777b95a6d11134251c3b522c3d1a82e5..5c89be919fba96c3328eea2a630b62b13808db87 100644
--- a/Source/platform/transforms/InterpolatedTransformOperation.h
+++ b/Source/platform/transforms/InterpolatedTransformOperation.h
@@ -45,14 +45,14 @@ public:
}
private:
- virtual bool isIdentity() const { return false; }
+ virtual bool isIdentity() const OVERRIDE { return false; }
virtual OperationType type() const OVERRIDE { return Interpolated; }
virtual bool operator==(const TransformOperation&) const;
- virtual void apply(TransformationMatrix&, const FloatSize& borderBoxSize) const;
+ virtual void apply(TransformationMatrix&, const FloatSize& borderBoxSize) const OVERRIDE;
- virtual PassRefPtr<TransformOperation> blend(const TransformOperation* from, double progress, bool blendToIdentity = false);
+ virtual PassRefPtr<TransformOperation> blend(const TransformOperation* from, double progress, bool blendToIdentity = false) OVERRIDE;
virtual bool dependsOnBoxSize() const OVERRIDE
{
« no previous file with comments | « Source/platform/transforms/IdentityTransformOperation.h ('k') | Source/platform/transforms/Matrix3DTransformOperation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698