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

Unified Diff: Source/platform/graphics/filters/DistantLightSource.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/DistantLightSource.h
diff --git a/Source/platform/graphics/filters/DistantLightSource.h b/Source/platform/graphics/filters/DistantLightSource.h
index 95ab96b69e551336ddfbf7c8e120515128975979..1df94bddea0b200d2966003972d793122a29e77c 100644
--- a/Source/platform/graphics/filters/DistantLightSource.h
+++ b/Source/platform/graphics/filters/DistantLightSource.h
@@ -34,7 +34,7 @@ public:
return adoptRef(new DistantLightSource(azimuth, elevation));
}
- virtual PassRefPtr<LightSource> create(const FloatPoint3D& scale, const FloatSize& offset) const OVERRIDE
+ virtual PassRefPtr<LightSource> create(const FloatPoint3D& scale, const FloatSize& offset) const override
{
return adoptRef(new DistantLightSource(m_azimuth, m_elevation));
}
@@ -42,13 +42,13 @@ public:
float azimuth() const { return m_azimuth; }
float elevation() const { return m_elevation; }
- virtual bool setAzimuth(float) OVERRIDE;
- virtual bool setElevation(float) OVERRIDE;
+ virtual bool setAzimuth(float) override;
+ virtual bool setElevation(float) override;
- virtual void initPaintingData(PaintingData&) const OVERRIDE;
- virtual void updatePaintingData(PaintingData&, int x, int y, float z) const OVERRIDE;
+ virtual void initPaintingData(PaintingData&) const override;
+ virtual void updatePaintingData(PaintingData&, int x, int y, float z) const override;
- virtual TextStream& externalRepresentation(TextStream&) const OVERRIDE;
+ virtual TextStream& externalRepresentation(TextStream&) const override;
private:
DistantLightSource(float azimuth, float elevation)
« no previous file with comments | « Source/platform/graphics/UnacceleratedImageBufferSurface.h ('k') | Source/platform/graphics/filters/FEBlend.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698