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

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

Issue 614373007: Oilpan: Remove adoptRefCountedGarbageCollected (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 2 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/OscillatorNode.cpp
diff --git a/Source/modules/webaudio/OscillatorNode.cpp b/Source/modules/webaudio/OscillatorNode.cpp
index 1ba1e2e90087c03ce2ac921c0c6f3d4167744724..aba283ebf247ee69570d1e58ee423e499aa9101e 100644
--- a/Source/modules/webaudio/OscillatorNode.cpp
+++ b/Source/modules/webaudio/OscillatorNode.cpp
@@ -43,7 +43,7 @@ using namespace VectorMath;
OscillatorNode* OscillatorNode::create(AudioContext* context, float sampleRate)
{
- return adoptRefCountedGarbageCollectedWillBeNoop(new OscillatorNode(context, sampleRate));
+ return new OscillatorNode(context, sampleRate);
}
OscillatorNode::OscillatorNode(AudioContext* context, float sampleRate)

Powered by Google App Engine
This is Rietveld 408576698