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

Unified Diff: Source/modules/mediastream/MediaStreamTrackEvent.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
Index: Source/modules/mediastream/MediaStreamTrackEvent.cpp
diff --git a/Source/modules/mediastream/MediaStreamTrackEvent.cpp b/Source/modules/mediastream/MediaStreamTrackEvent.cpp
index 97e3bff3f4cbdc697074404439e92b97b0d1bfe8..fa4b67f1768007c39ed9837fa016ac65a57f0ad1 100644
--- a/Source/modules/mediastream/MediaStreamTrackEvent.cpp
+++ b/Source/modules/mediastream/MediaStreamTrackEvent.cpp
@@ -42,14 +42,12 @@ PassRefPtrWillBeRawPtr<MediaStreamTrackEvent> MediaStreamTrackEvent::create(cons
MediaStreamTrackEvent::MediaStreamTrackEvent()
{
- ScriptWrappable::init(this);
}
MediaStreamTrackEvent::MediaStreamTrackEvent(const AtomicString& type, bool canBubble, bool cancelable, MediaStreamTrack* track)
: Event(type, canBubble, cancelable)
, m_track(track)
{
- ScriptWrappable::init(this);
}
MediaStreamTrackEvent::~MediaStreamTrackEvent()
« no previous file with comments | « Source/modules/mediastream/MediaStreamTrack.cpp ('k') | Source/modules/mediastream/NavigatorUserMediaError.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698