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

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

Issue 1214463003: Split "Online" and "Offline" AudioContext processing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Bring to ToT Created 5 years, 5 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
« no previous file with comments | « Source/modules/webaudio/DelayNode.cpp ('k') | Source/modules/webaudio/DynamicsCompressorNode.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/DynamicsCompressorNode.h
diff --git a/Source/modules/webaudio/DynamicsCompressorNode.h b/Source/modules/webaudio/DynamicsCompressorNode.h
index 548f873daff76f866873073f82335f58be6e1f0e..0d7eb968a8999f2ed7ccbb7ef4cfbfc93c61ecf0 100644
--- a/Source/modules/webaudio/DynamicsCompressorNode.h
+++ b/Source/modules/webaudio/DynamicsCompressorNode.h
@@ -32,6 +32,7 @@
namespace blink {
+class AbstractAudioContext;
class DynamicsCompressor;
class MODULES_EXPORT DynamicsCompressorHandler final : public AudioHandler {
@@ -64,7 +65,7 @@ private:
class MODULES_EXPORT DynamicsCompressorNode final : public AudioNode {
DEFINE_WRAPPERTYPEINFO();
public:
- static DynamicsCompressorNode* create(AudioContext&, float sampleRate);
+ static DynamicsCompressorNode* create(AbstractAudioContext&, float sampleRate);
DECLARE_VIRTUAL_TRACE();
AudioParam* threshold() const;
@@ -75,7 +76,7 @@ public:
AudioParam* release() const;
private:
- DynamicsCompressorNode(AudioContext&, float sampleRate);
+ DynamicsCompressorNode(AbstractAudioContext&, float sampleRate);
DynamicsCompressorHandler& dynamicsCompressorHandler() const;
Member<AudioParam> m_threshold;
« no previous file with comments | « Source/modules/webaudio/DelayNode.cpp ('k') | Source/modules/webaudio/DynamicsCompressorNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698