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

Unified Diff: Source/core/svg/properties/SVGPathSegListPropertyTearOff.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/SVGPathSegListPropertyTearOff.h
diff --git a/Source/core/svg/properties/SVGPathSegListPropertyTearOff.h b/Source/core/svg/properties/SVGPathSegListPropertyTearOff.h
index a5d8fdb34ccbca2dd151cf96003da790fdd9b51d..abec416dfb8aa83b15e3bb67065bc8bb47965564 100644
--- a/Source/core/svg/properties/SVGPathSegListPropertyTearOff.h
+++ b/Source/core/svg/properties/SVGPathSegListPropertyTearOff.h
@@ -28,7 +28,7 @@ namespace WebCore {
class SVGPathElement;
-class SVGPathSegListPropertyTearOff : public SVGListProperty<SVGPathSegList> {
+class SVGPathSegListPropertyTearOff FINAL : public SVGListProperty<SVGPathSegList> {
public:
typedef SVGListProperty<SVGPathSegList> Base;
typedef SVGAnimatedListPropertyTearOff<SVGPathSegList> AnimatedListPropertyTearOff;
@@ -126,20 +126,20 @@ private:
using Base::m_role;
- virtual void commitChange()
+ virtual void commitChange() OVERRIDE
{
ASSERT(m_values);
m_values->commitChange(m_animatedProperty->contextElement(), ListModificationUnknown);
}
- virtual void commitChange(ListModification listModification)
+ virtual void commitChange(ListModification listModification) OVERRIDE
{
ASSERT(m_values);
m_values->commitChange(m_animatedProperty->contextElement(), listModification);
}
virtual bool processIncomingListItemValue(const ListItemType& newItem, unsigned* indexToModify) OVERRIDE;
- virtual bool processIncomingListItemWrapper(RefPtr<ListItemTearOff>&, unsigned*)
+ virtual bool processIncomingListItemWrapper(RefPtr<ListItemTearOff>&, unsigned*) OVERRIDE
{
ASSERT_NOT_REACHED();
return true;
« no previous file with comments | « Source/core/svg/properties/SVGMatrixTearOff.h ('k') | Source/core/svg/properties/SVGStaticPropertyTearOff.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698