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

Unified Diff: Source/core/css/CSSCanvasValue.h

Issue 1226293002: Fix virtual/override/final usage in Source/core/{animation,css,style}/. (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/css/CSSCalculationValue.cpp ('k') | Source/core/css/CSSComputedStyleDeclaration.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSCanvasValue.h
diff --git a/Source/core/css/CSSCanvasValue.h b/Source/core/css/CSSCanvasValue.h
index 549dc8f70869e4aade779cb03cf8a20b394c98d9..4e15b7f9befe814fefd5542be805a764af347279 100644
--- a/Source/core/css/CSSCanvasValue.h
+++ b/Source/core/css/CSSCanvasValue.h
@@ -70,16 +70,16 @@ private:
public:
explicit CanvasObserverProxy(CSSCanvasValue* ownerValue) : m_ownerValue(ownerValue) { }
- virtual void canvasChanged(HTMLCanvasElement* canvas, const FloatRect& changedRect) override
+ void canvasChanged(HTMLCanvasElement* canvas, const FloatRect& changedRect) override
{
m_ownerValue->canvasChanged(canvas, changedRect);
}
- virtual void canvasResized(HTMLCanvasElement* canvas) override
+ void canvasResized(HTMLCanvasElement* canvas) override
{
m_ownerValue->canvasResized(canvas);
}
#if !ENABLE(OILPAN)
- virtual void canvasDestroyed(HTMLCanvasElement* canvas) override
+ void canvasDestroyed(HTMLCanvasElement* canvas) override
{
m_ownerValue->canvasDestroyed(canvas);
}
« no previous file with comments | « Source/core/css/CSSCalculationValue.cpp ('k') | Source/core/css/CSSComputedStyleDeclaration.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698