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

Unified Diff: third_party/WebKit/Source/modules/webaudio/MediaStreamAudioDestinationNode.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/MediaStreamAudioDestinationNode.h
diff --git a/third_party/WebKit/Source/modules/webaudio/MediaStreamAudioDestinationNode.h b/third_party/WebKit/Source/modules/webaudio/MediaStreamAudioDestinationNode.h
index 0f034ab24aeb40a13b7459b14d23e0c9197ae3ae..b95627ce80298d84cd4d3987e5303f5d22b7825a 100644
--- a/third_party/WebKit/Source/modules/webaudio/MediaStreamAudioDestinationNode.h
+++ b/third_party/WebKit/Source/modules/webaudio/MediaStreamAudioDestinationNode.h
@@ -33,7 +33,7 @@
namespace blink {
-class AbstractAudioContext;
+class BaseAudioContext;
class MediaStreamAudioDestinationHandler final : public AudioBasicInspectorHandler {
public:
@@ -65,11 +65,11 @@ private:
class MediaStreamAudioDestinationNode final : public AudioBasicInspectorNode {
DEFINE_WRAPPERTYPEINFO();
public:
- static MediaStreamAudioDestinationNode* create(AbstractAudioContext&, size_t numberOfChannels);
+ static MediaStreamAudioDestinationNode* create(BaseAudioContext&, size_t numberOfChannels);
MediaStream* stream() const;
private:
- MediaStreamAudioDestinationNode(AbstractAudioContext&, size_t numberOfChannels);
+ MediaStreamAudioDestinationNode(BaseAudioContext&, size_t numberOfChannels);
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698