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

Unified Diff: third_party/WebKit/Source/modules/webaudio/ChannelSplitterNode.h

Issue 1865583002: Implement BaseAudioContext (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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: third_party/WebKit/Source/modules/webaudio/ChannelSplitterNode.h
diff --git a/third_party/WebKit/Source/modules/webaudio/ChannelSplitterNode.h b/third_party/WebKit/Source/modules/webaudio/ChannelSplitterNode.h
index 5548ecaecee652c79298cf0bec7c429cace4ea12..abe4d9ad86a61cc222a4ab9363709c9e171aac44 100644
--- a/third_party/WebKit/Source/modules/webaudio/ChannelSplitterNode.h
+++ b/third_party/WebKit/Source/modules/webaudio/ChannelSplitterNode.h
@@ -30,7 +30,7 @@
namespace blink {
-class AbstractAudioContext;
+class BaseAudioContext;
class ChannelSplitterHandler final : public AudioHandler {
public:
@@ -46,10 +46,10 @@ private:
class ChannelSplitterNode final : public AudioNode {
DEFINE_WRAPPERTYPEINFO();
public:
- static ChannelSplitterNode* create(AbstractAudioContext&, float sampleRate, unsigned numberOfOutputs);
+ static ChannelSplitterNode* create(BaseAudioContext&, float sampleRate, unsigned numberOfOutputs);
private:
- ChannelSplitterNode(AbstractAudioContext&, float sampleRate, unsigned numberOfOutputs);
+ ChannelSplitterNode(BaseAudioContext&, float sampleRate, unsigned numberOfOutputs);
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698