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

Unified Diff: Source/core/css/Rect.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/RGBColor.h ('k') | Source/core/dom/DOMPointReadOnly.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/Rect.h
diff --git a/Source/core/css/Rect.h b/Source/core/css/Rect.h
index b53400bffa50a4f664bc680bc0ab246eeb0bc87c..245cd44dc99efce9c58f1e5d82578d0a79b920cf 100644
--- a/Source/core/css/Rect.h
+++ b/Source/core/css/Rect.h
@@ -21,13 +21,14 @@
#ifndef Rect_h
#define Rect_h
+#include "bindings/core/v8/ScriptWrappable.h"
#include "core/css/CSSPrimitiveValue.h"
#include "wtf/RefPtr.h"
#include "wtf/text/StringBuilder.h"
namespace blink {
-class RectBase : public RefCountedWillBeGarbageCollected<RectBase> {
+class RectBase : public RefCountedWillBeGarbageCollected<RectBase>, public ScriptWrappableBase {
DECLARE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(RectBase);
public:
CSSPrimitiveValue* top() const { return m_top.get(); }
« no previous file with comments | « Source/core/css/RGBColor.h ('k') | Source/core/dom/DOMPointReadOnly.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698