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

Unified Diff: Source/modules/webaudio/StereoPannerNode.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/ScriptProcessorNodeTest.cpp ('k') | Source/modules/webaudio/StereoPannerNode.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/StereoPannerNode.h
diff --git a/Source/modules/webaudio/StereoPannerNode.h b/Source/modules/webaudio/StereoPannerNode.h
index a6e7262fe2dffb8ff5f53ab11ab598261970916b..c9b9057699e83976d0f56cc8c625c644345e97da 100644
--- a/Source/modules/webaudio/StereoPannerNode.h
+++ b/Source/modules/webaudio/StereoPannerNode.h
@@ -12,6 +12,8 @@
namespace blink {
+class AbstractAudioContext;
+
// StereoPannerNode is an AudioNode with one input and one output. It is
// specifically designed for equal-power stereo panning.
class StereoPannerHandler final : public AudioHandler {
@@ -40,13 +42,13 @@ private:
class StereoPannerNode final : public AudioNode {
DEFINE_WRAPPERTYPEINFO();
public:
- static StereoPannerNode* create(AudioContext&, float sampleRate);
+ static StereoPannerNode* create(AbstractAudioContext&, float sampleRate);
DECLARE_VIRTUAL_TRACE();
AudioParam* pan() const;
private:
- StereoPannerNode(AudioContext&, float sampleRate);
+ StereoPannerNode(AbstractAudioContext&, float sampleRate);
Member<AudioParam> m_pan;
};
« no previous file with comments | « Source/modules/webaudio/ScriptProcessorNodeTest.cpp ('k') | Source/modules/webaudio/StereoPannerNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698