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

Unified Diff: Source/modules/mediastream/RTCIceCandidateEvent.cpp

Issue 540283003: bindings: Retires ScriptWrappable::init, etc. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Addressed a review comment. Created 6 years, 3 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/modules/mediastream/RTCIceCandidate.cpp ('k') | Source/modules/mediastream/RTCPeerConnection.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/mediastream/RTCIceCandidateEvent.cpp
diff --git a/Source/modules/mediastream/RTCIceCandidateEvent.cpp b/Source/modules/mediastream/RTCIceCandidateEvent.cpp
index 56c3d4a44db036e2a9304c93d5f34aad8b15efaf..bcd21f12eae80f32ed5f6a0d012cb2d791960d3e 100644
--- a/Source/modules/mediastream/RTCIceCandidateEvent.cpp
+++ b/Source/modules/mediastream/RTCIceCandidateEvent.cpp
@@ -41,14 +41,12 @@ PassRefPtrWillBeRawPtr<RTCIceCandidateEvent> RTCIceCandidateEvent::create(bool c
RTCIceCandidateEvent::RTCIceCandidateEvent()
{
- ScriptWrappable::init(this);
}
RTCIceCandidateEvent::RTCIceCandidateEvent(bool canBubble, bool cancelable, RTCIceCandidate* candidate)
: Event(EventTypeNames::icecandidate, canBubble, cancelable)
, m_candidate(candidate)
{
- ScriptWrappable::init(this);
}
RTCIceCandidateEvent::~RTCIceCandidateEvent()
« no previous file with comments | « Source/modules/mediastream/RTCIceCandidate.cpp ('k') | Source/modules/mediastream/RTCPeerConnection.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698