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

Unified Diff: Source/modules/webaudio/WaveShaperNode.cpp

Issue 438293003: Enable Oilpan by default for webaudio/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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/webaudio/WaveShaperNode.cpp
diff --git a/Source/modules/webaudio/WaveShaperNode.cpp b/Source/modules/webaudio/WaveShaperNode.cpp
index dc1fe43fcde7c51ddb4f000bfe547960eee70076..241bedc190c0c5200afcad7732db48975adc40f1 100644
--- a/Source/modules/webaudio/WaveShaperNode.cpp
+++ b/Source/modules/webaudio/WaveShaperNode.cpp
@@ -39,7 +39,7 @@ WaveShaperNode::WaveShaperNode(AudioContext* context)
: AudioBasicProcessorNode(context, context->sampleRate())
{
ScriptWrappable::init(this);
- m_processor = adoptPtrWillBeNoop(new WaveShaperProcessor(context->sampleRate(), 1));
+ m_processor = new WaveShaperProcessor(context->sampleRate(), 1);
setNodeType(NodeTypeWaveShaper);
initialize();

Powered by Google App Engine
This is Rietveld 408576698