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

Unified Diff: Source/modules/webaudio/MediaStreamAudioDestinationNode.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
Index: Source/modules/webaudio/MediaStreamAudioDestinationNode.h
diff --git a/Source/modules/webaudio/MediaStreamAudioDestinationNode.h b/Source/modules/webaudio/MediaStreamAudioDestinationNode.h
index 10e1fb83cba857d99a4439381c021e44118e8b92..cd0689ac6a2183e1c5273f83a32b7ab58ca120b0 100644
--- a/Source/modules/webaudio/MediaStreamAudioDestinationNode.h
+++ b/Source/modules/webaudio/MediaStreamAudioDestinationNode.h
@@ -35,7 +35,7 @@
namespace blink {
-class AudioContext;
+class AbstractAudioContext;
class MediaStreamAudioDestinationHandler final : public AudioBasicInspectorHandler {
public:
@@ -61,11 +61,11 @@ private:
class MediaStreamAudioDestinationNode final : public AudioBasicInspectorNode {
DEFINE_WRAPPERTYPEINFO();
public:
- static MediaStreamAudioDestinationNode* create(AudioContext&, size_t numberOfChannels);
+ static MediaStreamAudioDestinationNode* create(AbstractAudioContext&, size_t numberOfChannels);
MediaStream* stream() const;
private:
- MediaStreamAudioDestinationNode(AudioContext&, size_t numberOfChannels);
+ MediaStreamAudioDestinationNode(AbstractAudioContext&, size_t numberOfChannels);
};
} // namespace blink
« no previous file with comments | « Source/modules/webaudio/MediaElementAudioSourceNode.cpp ('k') | Source/modules/webaudio/MediaStreamAudioDestinationNode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698