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

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

Issue 205173002: Move webaudio to oilpan (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: WIP Created 6 years, 9 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 810477cde4e263a2b5a5d23bd1593061c568ae48..46e2d6ba80112ba4deccc6a4d7f0ef3970436c03 100644
--- a/Source/modules/webaudio/DynamicsCompressorNode.h
+++ b/Source/modules/webaudio/DynamicsCompressorNode.h
@@ -64,12 +64,12 @@ private:
DynamicsCompressorNode(AudioContext*, float sampleRate);
OwnPtr<DynamicsCompressor> m_dynamicsCompressor;
- RefPtr<AudioParam> m_threshold;
- RefPtr<AudioParam> m_knee;
- RefPtr<AudioParam> m_ratio;
- RefPtr<AudioParam> m_reduction;
- RefPtr<AudioParam> m_attack;
- RefPtr<AudioParam> m_release;
+ RefPtrWillBePersistent<AudioParam> m_threshold;
+ RefPtrWillBePersistent<AudioParam> m_knee;
+ RefPtrWillBePersistent<AudioParam> m_ratio;
+ RefPtrWillBePersistent<AudioParam> m_reduction;
+ RefPtrWillBePersistent<AudioParam> m_attack;
+ RefPtrWillBePersistent<AudioParam> m_release;
};
} // namespace WebCore

Powered by Google App Engine
This is Rietveld 408576698