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

Unified Diff: Source/WebCore/Modules/mediastream/RTCDataChannelEvent.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/Modules/mediastream/RTCDataChannelEvent.cpp
diff --git a/Source/WebCore/Modules/mediastream/RTCDataChannelEvent.cpp b/Source/WebCore/Modules/mediastream/RTCDataChannelEvent.cpp
index f227135b74d1b8071c628a31a1b098360a3fb9ce..a7f78c9909ae796cf30892bf1adc6c597db439a8 100644
--- a/Source/WebCore/Modules/mediastream/RTCDataChannelEvent.cpp
+++ b/Source/WebCore/Modules/mediastream/RTCDataChannelEvent.cpp
@@ -45,12 +45,14 @@ PassRefPtr<RTCDataChannelEvent> RTCDataChannelEvent::create(const AtomicString&
RTCDataChannelEvent::RTCDataChannelEvent()
{
+ ScriptWrappable::init(this);
}
RTCDataChannelEvent::RTCDataChannelEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<RTCDataChannel> channel)
: Event(type, canBubble, cancelable)
, m_channel(channel)
{
+ ScriptWrappable::init(this);
}
RTCDataChannelEvent::~RTCDataChannelEvent()

Powered by Google App Engine
This is Rietveld 408576698