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

Unified Diff: Source/platform/transforms/Matrix3DTransformOperation.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/Matrix3DTransformOperation.h
diff --git a/Source/platform/transforms/Matrix3DTransformOperation.h b/Source/platform/transforms/Matrix3DTransformOperation.h
index 5c4d9db4c4dd6a1eefc7529c25520be5a7945b0f..4d11dcd4ee2933e36b1aeb02d7d656c0b3f7c7f3 100644
--- a/Source/platform/transforms/Matrix3DTransformOperation.h
+++ b/Source/platform/transforms/Matrix3DTransformOperation.h
@@ -45,9 +45,9 @@ public:
}
private:
- virtual OperationType type() const override { return Matrix3D; }
+ OperationType type() const override { return Matrix3D; }
- virtual bool operator==(const TransformOperation& o) const override
+ bool operator==(const TransformOperation& o) const override
{
if (!isSameType(o))
return false;
@@ -55,12 +55,12 @@ private:
return m_matrix == m->m_matrix;
}
- virtual void apply(TransformationMatrix& transform, const FloatSize&) const override
+ void apply(TransformationMatrix& transform, const FloatSize&) const override
{
transform.multiply(TransformationMatrix(m_matrix));
}
- virtual PassRefPtr<TransformOperation> blend(const TransformOperation* from, double progress, bool blendToIdentity = false) override;
+ PassRefPtr<TransformOperation> blend(const TransformOperation* from, double progress, bool blendToIdentity = false) override;
Matrix3DTransformOperation(const TransformationMatrix& mat)
{
« no previous file with comments | « Source/platform/transforms/InterpolatedTransformOperation.h ('k') | Source/platform/transforms/MatrixTransformOperation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698