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

Unified Diff: third_party/WebKit/Source/core/svg/SVGAnimatedRect.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/SVGAnimatedRect.h
diff --git a/third_party/WebKit/Source/core/svg/SVGAnimatedRect.h b/third_party/WebKit/Source/core/svg/SVGAnimatedRect.h
index 99233711714f5739041b5f312dcfe5a6d14ef892..e1c69d903c2b179cf0f37acffb822f6e60992c14 100644
--- a/third_party/WebKit/Source/core/svg/SVGAnimatedRect.h
+++ b/third_party/WebKit/Source/core/svg/SVGAnimatedRect.h
@@ -31,12 +31,13 @@
#ifndef SVGAnimatedRect_h
#define SVGAnimatedRect_h
+#include "bindings/core/v8/ScriptWrappable.h"
#include "core/svg/SVGRectTearOff.h"
#include "core/svg/properties/SVGAnimatedProperty.h"
namespace blink {
-class SVGAnimatedRect : public SVGAnimatedProperty<SVGRect> {
+class SVGAnimatedRect : public SVGAnimatedProperty<SVGRect>, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
static PassRefPtrWillBeRawPtr<SVGAnimatedRect> create(SVGElement* contextElement, const QualifiedName& attributeName)

Powered by Google App Engine
This is Rietveld 408576698