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

Unified Diff: Source/platform/graphics/filters/DistantLightSource.h

Issue 1213003004: Fix virtual/override/final usage in Source/platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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 ac288ad8ab76827c76c752d4510f058bcb4c2b3e..ecf3efdc85c810b4dc84d14ad1101a5c853f7a12 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
+ PassRefPtr<LightSource> create(const FloatPoint3D& scale, const FloatSize& offset) const override
{
return adoptRef(new DistantLightSource(m_azimuth, m_elevation));
}
@@ -42,10 +42,10 @@ public:
float azimuth() const { return m_azimuth; }
float elevation() const { return m_elevation; }
- virtual bool setAzimuth(float) override;
- virtual bool setElevation(float) override;
+ bool setAzimuth(float) override;
+ bool setElevation(float) override;
- virtual TextStream& externalRepresentation(TextStream&) const override;
+ 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