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

Unified Diff: Source/platform/graphics/filters/SourceGraphic.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/graphics/filters/SourceAlpha.h ('k') | Source/platform/graphics/filters/SpotLightSource.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/graphics/filters/SourceGraphic.h
diff --git a/Source/platform/graphics/filters/SourceGraphic.h b/Source/platform/graphics/filters/SourceGraphic.h
index 78ec78cc6222bdb5aba16b68757aa7678a1608e6..bec83e047b2ef5d33cc02f85bad71f5f06140fec 100644
--- a/Source/platform/graphics/filters/SourceGraphic.h
+++ b/Source/platform/graphics/filters/SourceGraphic.h
@@ -34,12 +34,12 @@ public:
static const AtomicString& effectName();
- virtual FloatRect determineAbsolutePaintRect(const FloatRect& requestedRect) OVERRIDE;
+ virtual FloatRect determineAbsolutePaintRect(const FloatRect& requestedRect) override;
- virtual FilterEffectType filterEffectType() const OVERRIDE { return FilterEffectTypeSourceInput; }
+ virtual FilterEffectType filterEffectType() const override { return FilterEffectTypeSourceInput; }
- virtual TextStream& externalRepresentation(TextStream&, int indention) const OVERRIDE;
- PassRefPtr<SkImageFilter> createImageFilter(SkiaImageFilterBuilder*) OVERRIDE;
+ virtual TextStream& externalRepresentation(TextStream&, int indention) const override;
+ PassRefPtr<SkImageFilter> createImageFilter(SkiaImageFilterBuilder*) override;
void setDisplayList(PassRefPtr<DisplayList>);
@@ -51,7 +51,7 @@ private:
setOperatingColorSpace(ColorSpaceDeviceRGB);
}
- virtual void applySoftware() OVERRIDE;
+ virtual void applySoftware() override;
RefPtr<DisplayList> m_displayList;
};
« no previous file with comments | « Source/platform/graphics/filters/SourceAlpha.h ('k') | Source/platform/graphics/filters/SpotLightSource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698