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

Unified Diff: Source/WebCore/Modules/mediastream/RTCIceCandidateEvent.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/RTCIceCandidateEvent.cpp
diff --git a/Source/WebCore/Modules/mediastream/RTCIceCandidateEvent.cpp b/Source/WebCore/Modules/mediastream/RTCIceCandidateEvent.cpp
index cd5f3faa45e4e0a644badf89f3ae86e0245dd6ed..b88b90fb8f4da385aa333d16cc18bda46251a8a7 100644
--- a/Source/WebCore/Modules/mediastream/RTCIceCandidateEvent.cpp
+++ b/Source/WebCore/Modules/mediastream/RTCIceCandidateEvent.cpp
@@ -45,12 +45,14 @@ PassRefPtr<RTCIceCandidateEvent> RTCIceCandidateEvent::create(bool canBubble, bo
RTCIceCandidateEvent::RTCIceCandidateEvent()
{
+ ScriptWrappable::init(this);
}
RTCIceCandidateEvent::RTCIceCandidateEvent(bool canBubble, bool cancelable, PassRefPtr<RTCIceCandidate> candidate)
: Event(eventNames().icecandidateEvent, canBubble, cancelable)
, m_candidate(candidate)
{
+ ScriptWrappable::init(this);
}
RTCIceCandidateEvent::~RTCIceCandidateEvent()
« no previous file with comments | « Source/WebCore/Modules/mediastream/RTCDataChannelEvent.cpp ('k') | Source/WebCore/Modules/speech/SpeechRecognitionError.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698