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

Unified Diff: Source/platform/transforms/IdentityTransformOperation.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/IdentityTransformOperation.h
diff --git a/Source/platform/transforms/IdentityTransformOperation.h b/Source/platform/transforms/IdentityTransformOperation.h
index 4e6a0a68030a082062056e134eedaec466eb9553..0baa1790d41d3df6dd04e9a492532659c9888c25 100644
--- a/Source/platform/transforms/IdentityTransformOperation.h
+++ b/Source/platform/transforms/IdentityTransformOperation.h
@@ -42,16 +42,16 @@ public:
}
private:
- virtual OperationType type() const OVERRIDE { return Identity; }
+ virtual OperationType type() const override { return Identity; }
- virtual bool operator==(const TransformOperation& o) const OVERRIDE
+ virtual bool operator==(const TransformOperation& o) const override
{
return isSameType(o);
}
- virtual void apply(TransformationMatrix&, const FloatSize&) const OVERRIDE { }
+ virtual void apply(TransformationMatrix&, const FloatSize&) const override { }
- virtual PassRefPtr<TransformOperation> blend(const TransformOperation*, double, bool = false) OVERRIDE
+ virtual PassRefPtr<TransformOperation> blend(const TransformOperation*, double, bool = false) override
{
return this;
}
« no previous file with comments | « Source/platform/text/PlatformLocale.cpp ('k') | Source/platform/transforms/InterpolatedTransformOperation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698