| Index: third_party/WebKit/Source/core/svg/SVGAnimatedTransformList.h
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGAnimatedTransformList.h b/third_party/WebKit/Source/core/svg/SVGAnimatedTransformList.h
|
| index 771f36fc66f4cfb548122284815d711df09afe8a..ec1db9f03a4158c58123b2343234d4d9a613c1f8 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGAnimatedTransformList.h
|
| +++ b/third_party/WebKit/Source/core/svg/SVGAnimatedTransformList.h
|
| @@ -31,13 +31,14 @@
|
| #ifndef SVGAnimatedTransformList_h
|
| #define SVGAnimatedTransformList_h
|
|
|
| +#include "bindings/core/v8/ScriptWrappable.h"
|
| #include "core/svg/SVGTransformListTearOff.h"
|
| #include "core/svg/properties/SVGAnimatedProperty.h"
|
|
|
| namespace blink {
|
|
|
| // SVG Spec: http://www.w3.org/TR/SVG11/coords.html#InterfaceSVGAnimatedTransformList
|
| -class SVGAnimatedTransformList final : public SVGAnimatedProperty<SVGTransformList> {
|
| +class SVGAnimatedTransformList final : public SVGAnimatedProperty<SVGTransformList>, public ScriptWrappable {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| static PassRefPtrWillBeRawPtr<SVGAnimatedTransformList> create(SVGElement* contextElement, const QualifiedName& attributeName, PassRefPtrWillBeRawPtr<SVGTransformList> initialValue)
|
|
|