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

Unified Diff: Source/modules/webaudio/DynamicsCompressorNode.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/DynamicsCompressorNode.h
diff --git a/Source/modules/webaudio/DynamicsCompressorNode.h b/Source/modules/webaudio/DynamicsCompressorNode.h
index bee37255e3ac44cb56ac59609f78557c9239e562..5742aea1ec81869e8923722b7e0c754ecf9c39cf 100644
--- a/Source/modules/webaudio/DynamicsCompressorNode.h
+++ b/Source/modules/webaudio/DynamicsCompressorNode.h
@@ -38,7 +38,7 @@ class DynamicsCompressorNode FINAL : public AudioNode {
public:
static DynamicsCompressorNode* create(AudioContext* context, float sampleRate)
{
- return adoptRefCountedGarbageCollectedWillBeNoop(new DynamicsCompressorNode(context, sampleRate));
+ return new DynamicsCompressorNode(context, sampleRate);
}
virtual ~DynamicsCompressorNode();

Powered by Google App Engine
This is Rietveld 408576698