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

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

Issue 1213003004: Fix virtual/override/final usage in Source/platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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/IdentityTransformOperation.h
diff --git a/Source/platform/transforms/IdentityTransformOperation.h b/Source/platform/transforms/IdentityTransformOperation.h
index 0baa1790d41d3df6dd04e9a492532659c9888c25..b84f2da845b52f3783a57bd3d933d76bf20ac45c 100644
--- a/Source/platform/transforms/IdentityTransformOperation.h
+++ b/Source/platform/transforms/IdentityTransformOperation.h
@@ -42,16 +42,16 @@ public:
}
private:
- virtual OperationType type() const override { return Identity; }
+ OperationType type() const override { return Identity; }
- virtual bool operator==(const TransformOperation& o) const override
+ bool operator==(const TransformOperation& o) const override
{
return isSameType(o);
}
- virtual void apply(TransformationMatrix&, const FloatSize&) const override { }
+ void apply(TransformationMatrix&, const FloatSize&) const override { }
- virtual PassRefPtr<TransformOperation> blend(const TransformOperation*, double, bool = false) override
+ PassRefPtr<TransformOperation> blend(const TransformOperation*, double, bool = false) override
{
return this;
}
« no previous file with comments | « Source/platform/text/PlatformLocale.cpp ('k') | Source/platform/transforms/InterpolatedTransformOperation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698