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

Unified Diff: Source/WebCore/Modules/mediastream/RTCDTMFToneChangeEvent.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/RTCDTMFToneChangeEvent.cpp
diff --git a/Source/WebCore/Modules/mediastream/RTCDTMFToneChangeEvent.cpp b/Source/WebCore/Modules/mediastream/RTCDTMFToneChangeEvent.cpp
index bc9b67182bdb913d2e58fdfe0d349fcc0d25827b..99563c97c2bccbab34c008fc5f358cfadfa5f824 100644
--- a/Source/WebCore/Modules/mediastream/RTCDTMFToneChangeEvent.cpp
+++ b/Source/WebCore/Modules/mediastream/RTCDTMFToneChangeEvent.cpp
@@ -50,18 +50,21 @@ PassRefPtr<RTCDTMFToneChangeEvent> RTCDTMFToneChangeEvent::create(const AtomicSt
RTCDTMFToneChangeEvent::RTCDTMFToneChangeEvent()
{
+ ScriptWrappable::init(this);
}
RTCDTMFToneChangeEvent::RTCDTMFToneChangeEvent(const String& tone)
: Event(eventNames().tonechangeEvent, false, false)
, m_tone(tone)
{
+ ScriptWrappable::init(this);
}
RTCDTMFToneChangeEvent::RTCDTMFToneChangeEvent(const RTCDTMFToneChangeEventInit& initializer)
: Event(eventNames().tonechangeEvent, initializer)
, m_tone(initializer.tone)
{
+ ScriptWrappable::init(this);
}
RTCDTMFToneChangeEvent::~RTCDTMFToneChangeEvent()

Powered by Google App Engine
This is Rietveld 408576698