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

Unified Diff: third_party/WebKit/Source/core/svg/SVGAnimatedNumberList.h

Issue 1807333003: Push ScriptWrappable inheritance down from SVGAnimatedPropertyBase (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove DEFINE_WRAPPERTYPEINFO_NOT_REACHED. Created 4 years, 9 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: third_party/WebKit/Source/core/svg/SVGAnimatedNumberList.h
diff --git a/third_party/WebKit/Source/core/svg/SVGAnimatedNumberList.h b/third_party/WebKit/Source/core/svg/SVGAnimatedNumberList.h
index da9a364420218c1bc4b8dbe2e0397256828df9f1..b12fe77035aaf99994d57d6ffb2c1b4f4574b2d7 100644
--- a/third_party/WebKit/Source/core/svg/SVGAnimatedNumberList.h
+++ b/third_party/WebKit/Source/core/svg/SVGAnimatedNumberList.h
@@ -31,13 +31,14 @@
#ifndef SVGAnimatedNumberList_h
#define SVGAnimatedNumberList_h
+#include "bindings/core/v8/ScriptWrappable.h"
#include "core/svg/SVGNumberListTearOff.h"
#include "core/svg/properties/SVGAnimatedProperty.h"
namespace blink {
// SVG Spec: http://www.w3.org/TR/SVG11/types.html#InterfaceSVGAnimatedNumberList
-class SVGAnimatedNumberList final : public SVGAnimatedProperty<SVGNumberList> {
+class SVGAnimatedNumberList final : public SVGAnimatedProperty<SVGNumberList>, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
static PassRefPtrWillBeRawPtr<SVGAnimatedNumberList> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtrWillBeRawPtr<SVGNumberList> initialValue)

Powered by Google App Engine
This is Rietveld 408576698