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

Unified Diff: Source/platform/transforms/InterpolatedTransformOperation.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/InterpolatedTransformOperation.h
diff --git a/Source/platform/transforms/InterpolatedTransformOperation.h b/Source/platform/transforms/InterpolatedTransformOperation.h
index af1b6ef83647ff5ce058272586306998c00d966a..071c0540e493463389e5246e8ea6429e4b6df788 100644
--- a/Source/platform/transforms/InterpolatedTransformOperation.h
+++ b/Source/platform/transforms/InterpolatedTransformOperation.h
@@ -50,14 +50,14 @@ public:
}
private:
- virtual OperationType type() const OVERRIDE { return Interpolated; }
+ virtual OperationType type() const override { return Interpolated; }
- virtual bool operator==(const TransformOperation&) const OVERRIDE;
- virtual void apply(TransformationMatrix&, const FloatSize& borderBoxSize) const OVERRIDE;
+ virtual bool operator==(const TransformOperation&) const override;
+ virtual void apply(TransformationMatrix&, const FloatSize& borderBoxSize) const override;
- 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 from.dependsOnBoxSize() || to.dependsOnBoxSize();
}
« no previous file with comments | « Source/platform/transforms/IdentityTransformOperation.h ('k') | Source/platform/transforms/Matrix3DTransformOperation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698