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

Unified Diff: Source/core/svg/properties/SVGAnimatedTransformListPropertyTearOff.h

Issue 137063005: Update more svg classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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/core/svg/properties/SVGAnimatedTransformListPropertyTearOff.h
diff --git a/Source/core/svg/properties/SVGAnimatedTransformListPropertyTearOff.h b/Source/core/svg/properties/SVGAnimatedTransformListPropertyTearOff.h
index 0bc26c475d25d58ea7dc6b56ba4b8defb8e4ef00..daa7e6e4993f6c8d610fbb6a7694a7e8025dcd57 100644
--- a/Source/core/svg/properties/SVGAnimatedTransformListPropertyTearOff.h
+++ b/Source/core/svg/properties/SVGAnimatedTransformListPropertyTearOff.h
@@ -28,14 +28,14 @@ namespace WebCore {
class SVGAnimatedTransformListPropertyTearOff : public SVGAnimatedListPropertyTearOff<SVGTransformList> {
public:
- virtual SVGListPropertyTearOff<SVGTransformList>* baseVal()
+ virtual SVGListPropertyTearOff<SVGTransformList>* baseVal() OVERRIDE
{
if (!m_baseVal)
m_baseVal = SVGTransformListPropertyTearOff::create(this, BaseValRole, m_values, m_wrappers);
return static_cast<SVGListPropertyTearOff<SVGTransformList>*>(m_baseVal.get());
}
- virtual SVGListPropertyTearOff<SVGTransformList>* animVal()
+ virtual SVGListPropertyTearOff<SVGTransformList>* animVal() OVERRIDE
{
if (!m_animVal)
m_animVal = SVGTransformListPropertyTearOff::create(this, AnimValRole, m_values, m_wrappers);
« no previous file with comments | « Source/core/svg/properties/SVGAnimatedPropertyTearOff.h ('k') | Source/core/svg/properties/SVGMatrixTearOff.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698