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

Powered by Google App Engine
This is Rietveld 408576698