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

Unified Diff: Source/WebCore/html/track/TrackEvent.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
Index: Source/WebCore/html/track/TrackEvent.cpp
diff --git a/Source/WebCore/html/track/TrackEvent.cpp b/Source/WebCore/html/track/TrackEvent.cpp
index 0bb56a5f8e6c5be65c9e8cf87f5e2852583d76c3..dc4e69937d411f301409d05e88db79ecb3a815ba 100644
--- a/Source/WebCore/html/track/TrackEvent.cpp
+++ b/Source/WebCore/html/track/TrackEvent.cpp
@@ -40,12 +40,14 @@ TrackEventInit::TrackEventInit()
TrackEvent::TrackEvent()
{
+ ScriptWrappable::init(this);
}
TrackEvent::TrackEvent(const AtomicString& type, const TrackEventInit& initializer)
: Event(type, initializer)
, m_track(initializer.track)
{
+ ScriptWrappable::init(this);
}
TrackEvent::~TrackEvent()
« no previous file with comments | « Source/WebCore/html/shadow/HTMLShadowElement.cpp ('k') | Source/WebCore/loader/appcache/DOMApplicationCache.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698