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

Unified Diff: Source/modules/webmidi/MIDIConnectionEvent.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/webmidi/MIDIAccess.cpp ('k') | Source/modules/webmidi/MIDIInput.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webmidi/MIDIConnectionEvent.cpp
diff --git a/Source/modules/webmidi/MIDIConnectionEvent.cpp b/Source/modules/webmidi/MIDIConnectionEvent.cpp
index c00f7e801e26a765054900effa8a7c0286ae0a5a..9cb8163a4abca6f300431cdedb71f0c8d4684432 100644
--- a/Source/modules/webmidi/MIDIConnectionEvent.cpp
+++ b/Source/modules/webmidi/MIDIConnectionEvent.cpp
@@ -35,21 +35,18 @@ namespace blink {
MIDIConnectionEvent::MIDIConnectionEvent()
{
- ScriptWrappable::init(this);
}
MIDIConnectionEvent::MIDIConnectionEvent(const AtomicString& type, MIDIPort* port)
: Event(type, false, false)
, m_port(port)
{
- ScriptWrappable::init(this);
}
MIDIConnectionEvent::MIDIConnectionEvent(const AtomicString& type, const MIDIConnectionEventInit& initializer)
: Event(type, initializer)
, m_port(initializer.port)
{
- ScriptWrappable::init(this);
}
PassRefPtrWillBeRawPtr<MIDIConnectionEvent> MIDIConnectionEvent::create()
« no previous file with comments | « Source/modules/webmidi/MIDIAccess.cpp ('k') | Source/modules/webmidi/MIDIInput.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698