| 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
|
|
|