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

Unified Diff: Source/core/css/CSSRule.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 | « no previous file | Source/core/css/CSSValue.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSRule.h
diff --git a/Source/core/css/CSSRule.h b/Source/core/css/CSSRule.h
index 431eaadd3dfcc60c126a4c92be656d58814262c9..341d15e801bab0dc3b3ff8c0781b318964094028 100644
--- a/Source/core/css/CSSRule.h
+++ b/Source/core/css/CSSRule.h
@@ -23,6 +23,7 @@
#ifndef CSSRule_h
#define CSSRule_h
+#include "bindings/core/v8/ScriptWrappable.h"
#include "platform/heap/Handle.h"
#include "wtf/RefCounted.h"
#include "wtf/text/WTFString.h"
@@ -33,7 +34,7 @@ class CSSParserContext;
class CSSStyleSheet;
class StyleRuleBase;
-class CSSRule : public RefCountedWillBeGarbageCollectedFinalized<CSSRule> {
+class CSSRule : public RefCountedWillBeGarbageCollectedFinalized<CSSRule>, public ScriptWrappableBase {
public:
virtual ~CSSRule() { }
« no previous file with comments | « no previous file | Source/core/css/CSSValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698