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

Unified Diff: Source/platform/transforms/IdentityTransformOperation.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
« no previous file with comments | « Source/platform/text/LineEnding.cpp ('k') | Source/platform/transforms/InterpolatedTransformOperation.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/transforms/IdentityTransformOperation.h
diff --git a/Source/platform/transforms/IdentityTransformOperation.h b/Source/platform/transforms/IdentityTransformOperation.h
index 113da29590b154d76c6e588425a82dc2ba29c47e..415b9c83300602f6ad6a964b0277d7954a57b647 100644
--- a/Source/platform/transforms/IdentityTransformOperation.h
+++ b/Source/platform/transforms/IdentityTransformOperation.h
@@ -37,7 +37,7 @@ public:
}
private:
- virtual bool isIdentity() const { return true; }
+ virtual bool isIdentity() const OVERRIDE FINAL { return true; }
virtual OperationType type() const OVERRIDE { return Identity; }
virtual bool operator==(const TransformOperation& o) const
@@ -45,9 +45,9 @@ private:
return isSameType(o);
}
- virtual void apply(TransformationMatrix&, const FloatSize&) const { }
+ virtual void apply(TransformationMatrix&, const FloatSize&) const OVERRIDE { }
- virtual PassRefPtr<TransformOperation> blend(const TransformOperation*, double, bool = false)
+ virtual PassRefPtr<TransformOperation> blend(const TransformOperation*, double, bool = false) OVERRIDE
{
return this;
}
« no previous file with comments | « Source/platform/text/LineEnding.cpp ('k') | Source/platform/transforms/InterpolatedTransformOperation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698