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

Unified Diff: Source/platform/transforms/TranslateTransformOperation.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
« no previous file with comments | « Source/platform/transforms/SkewTransformOperation.h ('k') | Source/platform/weborigin/KURL.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/transforms/TranslateTransformOperation.h
diff --git a/Source/platform/transforms/TranslateTransformOperation.h b/Source/platform/transforms/TranslateTransformOperation.h
index d620f360f4906fb756cef07e0d6e5a8a180c77f9..63938b5f7f2525dff8545498d2dee1e7dcda932b 100644
--- a/Source/platform/transforms/TranslateTransformOperation.h
+++ b/Source/platform/transforms/TranslateTransformOperation.h
@@ -53,9 +53,9 @@ public:
double z() const { return m_z; }
private:
- virtual OperationType type() const OVERRIDE { return m_type; }
+ virtual OperationType type() const override { return m_type; }
- virtual bool operator==(const TransformOperation& o) const OVERRIDE
+ virtual bool operator==(const TransformOperation& o) const override
{
if (!isSameType(o))
return false;
@@ -63,14 +63,14 @@ private:
return m_x == t->m_x && m_y == t->m_y && m_z == t->m_z;
}
- virtual void apply(TransformationMatrix& transform, const FloatSize& borderBoxSize) const OVERRIDE
+ virtual void apply(TransformationMatrix& transform, const FloatSize& borderBoxSize) const override
{
transform.translate3d(x(borderBoxSize), y(borderBoxSize), z());
}
- 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;
- virtual bool dependsOnBoxSize() const OVERRIDE
+ virtual bool dependsOnBoxSize() const override
{
return m_x.isPercent() || m_y.isPercent();
}
« no previous file with comments | « Source/platform/transforms/SkewTransformOperation.h ('k') | Source/platform/weborigin/KURL.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698