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

Unified Diff: Source/WebCore/dom/CustomEvent.cpp

Issue 13814002: First part of work to move V8 binding integrity off of vtables. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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/WebCore/dom/CompositionEvent.cpp ('k') | Source/WebCore/dom/DOMImplementation.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/dom/CustomEvent.cpp
diff --git a/Source/WebCore/dom/CustomEvent.cpp b/Source/WebCore/dom/CustomEvent.cpp
index 7484d1585aeca5d7d3a14af0a4e86b9e6e088a82..83b3a856b230c5070ce839ef1b3b54998eebb765 100644
--- a/Source/WebCore/dom/CustomEvent.cpp
+++ b/Source/WebCore/dom/CustomEvent.cpp
@@ -36,12 +36,14 @@ CustomEventInit::CustomEventInit()
CustomEvent::CustomEvent()
{
+ ScriptWrappable::init(this);
}
CustomEvent::CustomEvent(const AtomicString& type, const CustomEventInit& initializer)
: Event(type, initializer)
, m_detail(initializer.detail)
{
+ ScriptWrappable::init(this);
}
CustomEvent::~CustomEvent()
« no previous file with comments | « Source/WebCore/dom/CompositionEvent.cpp ('k') | Source/WebCore/dom/DOMImplementation.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698