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

Unified Diff: Source/modules/webaudio/GainNode.h

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/GainNode.h
diff --git a/Source/modules/webaudio/GainNode.h b/Source/modules/webaudio/GainNode.h
index 29719373b29bce95c877a2657e5cb946d7d6ad24..19651a860f6ca19e7d117af8cce88a1aed7c35df 100644
--- a/Source/modules/webaudio/GainNode.h
+++ b/Source/modules/webaudio/GainNode.h
@@ -42,7 +42,7 @@ class GainNode final : public AudioNode {
public:
static GainNode* create(AudioContext* context, float sampleRate)
{
- return adoptRefCountedGarbageCollectedWillBeNoop(new GainNode(context, sampleRate));
+ return new GainNode(context, sampleRate);
}
// AudioNode
« no previous file with comments | « Source/modules/webaudio/DynamicsCompressorNode.h ('k') | Source/modules/webaudio/MediaElementAudioSourceNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698