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

Unified Diff: Source/core/html/canvas/CanvasRenderingContext2DState.h

Issue 1219013005: Fix virtual/override/final usage in Source/core/html/. (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
« no previous file with comments | « Source/core/html/canvas/CanvasRenderingContext2D.h ('k') | Source/core/html/canvas/Path2D.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/canvas/CanvasRenderingContext2DState.h
diff --git a/Source/core/html/canvas/CanvasRenderingContext2DState.h b/Source/core/html/canvas/CanvasRenderingContext2DState.h
index ec3dca002f9f91e58f8a984f6d38e2b904c25e01..54e20599ec71ba26dd8752770899fab78365685e 100644
--- a/Source/core/html/canvas/CanvasRenderingContext2DState.h
+++ b/Source/core/html/canvas/CanvasRenderingContext2DState.h
@@ -25,7 +25,7 @@ public:
return adoptPtrWillBeNoop(new CanvasRenderingContext2DState);
}
- virtual ~CanvasRenderingContext2DState();
+ ~CanvasRenderingContext2DState() override;
DECLARE_VIRTUAL_TRACE();
@@ -47,7 +47,7 @@ public:
CanvasRenderingContext2DState& operator=(const CanvasRenderingContext2DState&);
// CSSFontSelectorClient implementation
- virtual void fontsNeedUpdate(CSSFontSelector*) override;
+ void fontsNeedUpdate(CSSFontSelector*) override;
bool hasUnrealizedSaves() const { return m_unrealizedSaveCount; }
void save() { ++m_unrealizedSaveCount; }
« no previous file with comments | « Source/core/html/canvas/CanvasRenderingContext2D.h ('k') | Source/core/html/canvas/Path2D.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698