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

Unified Diff: Source/platform/transforms/PerspectiveTransformOperation.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/PerspectiveTransformOperation.h
diff --git a/Source/platform/transforms/PerspectiveTransformOperation.h b/Source/platform/transforms/PerspectiveTransformOperation.h
index 57e371bf7da2afcafe759e5688d74a99f9cc2191..2c96d9d7a9d26489e08daa52e41948db1bca3beb 100644
--- a/Source/platform/transforms/PerspectiveTransformOperation.h
+++ b/Source/platform/transforms/PerspectiveTransformOperation.h
@@ -45,9 +45,9 @@ public:
}
private:
- virtual OperationType type() const OVERRIDE { return Perspective; }
+ virtual OperationType type() const override { return Perspective; }
- virtual bool operator==(const TransformOperation& o) const OVERRIDE
+ virtual bool operator==(const TransformOperation& o) const override
{
if (!isSameType(o))
return false;
@@ -55,12 +55,12 @@ private:
return m_p == p->m_p;
}
- virtual void apply(TransformationMatrix& transform, const FloatSize&) const OVERRIDE
+ virtual void apply(TransformationMatrix& transform, const FloatSize&) const override
{
transform.applyPerspective(m_p);
}
- 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;
PerspectiveTransformOperation(double p)
: m_p(p)
« no previous file with comments | « Source/platform/transforms/MatrixTransformOperation.h ('k') | Source/platform/transforms/RotateTransformOperation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698