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

Unified Diff: Source/modules/webaudio/AnalyserNode.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/AnalyserNode.h
diff --git a/Source/modules/webaudio/AnalyserNode.h b/Source/modules/webaudio/AnalyserNode.h
index 6dfb6ee1d9daed93b726d3606cce2e63549accf9..e80e06f6f694777a0be4db3ed2036b5db7767216 100644
--- a/Source/modules/webaudio/AnalyserNode.h
+++ b/Source/modules/webaudio/AnalyserNode.h
@@ -38,7 +38,7 @@ class AnalyserNode final : public AudioBasicInspectorNode {
public:
static AnalyserNode* create(AudioContext* context, float sampleRate)
{
- return adoptRefCountedGarbageCollectedWillBeNoop(new AnalyserNode(context, sampleRate));
+ return new AnalyserNode(context, sampleRate);
}
virtual ~AnalyserNode();
« no previous file with comments | « Source/modules/speech/SpeechSynthesisUtterance.cpp ('k') | Source/modules/webaudio/AudioBufferSourceNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698