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

Unified Diff: Source/modules/webaudio/ChannelMergerNode.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/webaudio/BiquadFilterNode.cpp ('k') | Source/modules/webaudio/ChannelSplitterNode.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/ChannelMergerNode.cpp
diff --git a/Source/modules/webaudio/ChannelMergerNode.cpp b/Source/modules/webaudio/ChannelMergerNode.cpp
index 1aafe24481965d0666c6579012755746871f7c6d..31f3db5ad6842fe3f9a8c9860dc78b2ee592ae85 100644
--- a/Source/modules/webaudio/ChannelMergerNode.cpp
+++ b/Source/modules/webaudio/ChannelMergerNode.cpp
@@ -52,7 +52,6 @@ ChannelMergerNode::ChannelMergerNode(AudioContext* context, float sampleRate, un
: AudioNode(context, sampleRate)
, m_desiredNumberOfOutputChannels(DefaultNumberOfOutputChannels)
{
- ScriptWrappable::init(this);
// Create the requested number of inputs.
for (unsigned i = 0; i < numberOfInputs; ++i)
addInput();
« no previous file with comments | « Source/modules/webaudio/BiquadFilterNode.cpp ('k') | Source/modules/webaudio/ChannelSplitterNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698