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

Unified Diff: third_party/WebKit/Source/modules/webaudio/AudioBasicInspectorNode.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/AudioBasicInspectorNode.h
diff --git a/third_party/WebKit/Source/modules/webaudio/AudioBasicInspectorNode.h b/third_party/WebKit/Source/modules/webaudio/AudioBasicInspectorNode.h
index 4a27e7999dcabd63b97c5cbf0e5a21a77575a9e5..cbad7c187eb7a9a75e88be0fee6794b79f7a5113 100644
--- a/third_party/WebKit/Source/modules/webaudio/AudioBasicInspectorNode.h
+++ b/third_party/WebKit/Source/modules/webaudio/AudioBasicInspectorNode.h
@@ -29,12 +29,12 @@
namespace blink {
-class AbstractAudioContext;
+class BaseAudioContext;
class ExceptionState;
// AudioBasicInspectorNode is an AudioNode with one input and one output where the output might not necessarily connect to another node's input.
// If the output is not connected to any other node, then the AudioBasicInspectorNode's processIfNecessary() function will be called automatically by
-// AbstractAudioContext before the end of each render quantum so that it can inspect the audio stream.
+// BaseAudioContext before the end of each render quantum so that it can inspect the audio stream.
class AudioBasicInspectorHandler : public AudioHandler {
public:
AudioBasicInspectorHandler(NodeType, AudioNode&, float sampleRate, unsigned outputChannelCount);
@@ -46,12 +46,12 @@ public:
void updatePullStatus();
private:
- bool m_needAutomaticPull; // When setting to true, AudioBasicInspectorHandler will be pulled automaticlly by AbstractAudioContext before the end of each render quantum.
+ bool m_needAutomaticPull; // When setting to true, AudioBasicInspectorHandler will be pulled automaticlly by BaseAudioContext before the end of each render quantum.
};
class AudioBasicInspectorNode : public AudioNode {
protected:
- explicit AudioBasicInspectorNode(AbstractAudioContext& context) : AudioNode(context) { }
+ explicit AudioBasicInspectorNode(BaseAudioContext& context) : AudioNode(context) { }
private:
// TODO(tkent): Should AudioBasicInspectorNode override other variants of

Powered by Google App Engine
This is Rietveld 408576698