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

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 48d83b9b8a5505b6e7ab600617f0be48c7c60c7e..560348c5540b7437c2335026ed74d244e753adaa 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

Powered by Google App Engine
This is Rietveld 408576698