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

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

Issue 630853002: Replacing the OVERRIDE with override in third_party/WebKit/Source/platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase build fix 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
Index: Source/platform/transforms/MatrixTransformOperation.h
diff --git a/Source/platform/transforms/MatrixTransformOperation.h b/Source/platform/transforms/MatrixTransformOperation.h
index 0ce81e60d22315de9959a8cceb57631c8c08a983..d6865a2935a243d2b088142e29c356275fd96730 100644
--- a/Source/platform/transforms/MatrixTransformOperation.h
+++ b/Source/platform/transforms/MatrixTransformOperation.h
@@ -50,9 +50,9 @@ public:
}
private:
- virtual OperationType type() const OVERRIDE { return Matrix; }
+ virtual OperationType type() const override { return Matrix; }
- virtual bool operator==(const TransformOperation& o) const OVERRIDE
+ virtual bool operator==(const TransformOperation& o) const override
{
if (!isSameType(o))
return false;
@@ -61,13 +61,13 @@ private:
return m_a == m->m_a && m_b == m->m_b && m_c == m->m_c && m_d == m->m_d && m_e == m->m_e && m_f == m->m_f;
}
- virtual void apply(TransformationMatrix& transform, const FloatSize&) const OVERRIDE
+ virtual void apply(TransformationMatrix& transform, const FloatSize&) const override
{
TransformationMatrix matrix(m_a, m_b, m_c, m_d, m_e, m_f);
transform.multiply(matrix);
}
- virtual PassRefPtr<TransformOperation> blend(const TransformOperation* from, double progress, bool blendToIdentity = false) OVERRIDE;
+ virtual PassRefPtr<TransformOperation> blend(const TransformOperation* from, double progress, bool blendToIdentity = false) override;
MatrixTransformOperation(double a, double b, double c, double d, double e, double f)
: m_a(a)
« no previous file with comments | « Source/platform/transforms/Matrix3DTransformOperation.h ('k') | Source/platform/transforms/PerspectiveTransformOperation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698