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

Unified Diff: Source/modules/webaudio/OfflineAudioDestinationNode.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/OfflineAudioDestinationNode.h
diff --git a/Source/modules/webaudio/OfflineAudioDestinationNode.h b/Source/modules/webaudio/OfflineAudioDestinationNode.h
index 9f990fb25ddcf04ee61f70065b2a91decfbd6ade..22c2edbb55995e4e92d9eb3ffa04ab7e677d2eca 100644
--- a/Source/modules/webaudio/OfflineAudioDestinationNode.h
+++ b/Source/modules/webaudio/OfflineAudioDestinationNode.h
@@ -40,7 +40,7 @@ class OfflineAudioDestinationNode FINAL : public AudioDestinationNode {
public:
static OfflineAudioDestinationNode* create(AudioContext* context, AudioBuffer* renderTarget)
{
- return adoptRefCountedGarbageCollectedWillBeNoop(new OfflineAudioDestinationNode(context, renderTarget));
+ return new OfflineAudioDestinationNode(context, renderTarget);
}
virtual ~OfflineAudioDestinationNode();

Powered by Google App Engine
This is Rietveld 408576698