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

Unified Diff: Source/platform/graphics/filters/FEOffset.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/graphics/filters/FEOffset.h
diff --git a/Source/platform/graphics/filters/FEOffset.h b/Source/platform/graphics/filters/FEOffset.h
index b5428b9b7a23dbb90df741ae1368939e673819c1..da86f3a56d61a9b6b201b304b505c024e0eb65d6 100644
--- a/Source/platform/graphics/filters/FEOffset.h
+++ b/Source/platform/graphics/filters/FEOffset.h
@@ -38,16 +38,16 @@ public:
float dy() const;
void setDy(float);
- virtual FloatRect mapRect(const FloatRect&, bool forward = true) OVERRIDE FINAL;
+ virtual FloatRect mapRect(const FloatRect&, bool forward = true) override FINAL;
- virtual TextStream& externalRepresentation(TextStream&, int indention) const OVERRIDE;
+ virtual TextStream& externalRepresentation(TextStream&, int indention) const override;
- virtual PassRefPtr<SkImageFilter> createImageFilter(SkiaImageFilterBuilder*) OVERRIDE;
+ virtual PassRefPtr<SkImageFilter> createImageFilter(SkiaImageFilterBuilder*) override;
private:
FEOffset(Filter*, float dx, float dy);
- virtual void applySoftware() OVERRIDE;
+ virtual void applySoftware() override;
float m_dx;
float m_dy;
« no previous file with comments | « Source/platform/graphics/filters/FEMorphology.h ('k') | Source/platform/graphics/filters/FESpecularLighting.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698