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

Unified Diff: Source/core/dom/DOMPointReadOnly.h

Issue 424783002: bindings: Makes all the DOM classes derive ScriptWrappableBase. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Synced. Created 6 years, 5 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
« no previous file with comments | « Source/core/css/Rect.h ('k') | Source/core/dom/DOMRectReadOnly.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DOMPointReadOnly.h
diff --git a/Source/core/dom/DOMPointReadOnly.h b/Source/core/dom/DOMPointReadOnly.h
index 0d8bbe4aa174729ff3952c064730fd2d4de18a9e..a26015d447ffb6edbca3d797c9e698945462f677 100644
--- a/Source/core/dom/DOMPointReadOnly.h
+++ b/Source/core/dom/DOMPointReadOnly.h
@@ -5,11 +5,12 @@
#ifndef DOMPointReadOnly_h
#define DOMPointReadOnly_h
+#include "bindings/core/v8/ScriptWrappable.h"
#include "platform/heap/Handle.h"
namespace WebCore {
-class DOMPointReadOnly : public GarbageCollected<DOMPointReadOnly> {
+class DOMPointReadOnly : public GarbageCollected<DOMPointReadOnly>, public ScriptWrappableBase {
public:
static DOMPointReadOnly* create(double x, double y, double z, double w);
« no previous file with comments | « Source/core/css/Rect.h ('k') | Source/core/dom/DOMRectReadOnly.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698