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

Unified Diff: Source/modules/webaudio/ChannelMergerNode.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/BiquadFilterNode.cpp ('k') | Source/modules/webaudio/ChannelMergerNode.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/webaudio/ChannelMergerNode.h
diff --git a/Source/modules/webaudio/ChannelMergerNode.h b/Source/modules/webaudio/ChannelMergerNode.h
index e4374f1cead755956eafab25a709a0e0e3a82909..eaab17edfc8687d893d2f0f3341af0b89b46ee95 100644
--- a/Source/modules/webaudio/ChannelMergerNode.h
+++ b/Source/modules/webaudio/ChannelMergerNode.h
@@ -34,7 +34,7 @@
namespace blink {
-class AudioContext;
+class AbstractAudioContext;
class ChannelMergerHandler final : public AudioHandler {
public:
@@ -51,10 +51,10 @@ private:
class ChannelMergerNode final : public AudioNode {
DEFINE_WRAPPERTYPEINFO();
public:
- static ChannelMergerNode* create(AudioContext&, float sampleRate, unsigned numberOfInputs);
+ static ChannelMergerNode* create(AbstractAudioContext&, float sampleRate, unsigned numberOfInputs);
private:
- ChannelMergerNode(AudioContext&, float sampleRate, unsigned numberOfInputs);
+ ChannelMergerNode(AbstractAudioContext&, float sampleRate, unsigned numberOfInputs);
};
} // namespace blink
« no previous file with comments | « Source/modules/webaudio/BiquadFilterNode.cpp ('k') | Source/modules/webaudio/ChannelMergerNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698