| Index: Source/modules/webaudio/AudioContext.h
|
| diff --git a/Source/modules/webaudio/AudioContext.h b/Source/modules/webaudio/AudioContext.h
|
| index c8cba0bb763485b26b93253f44673ffe850b6810..9e2e2c075920917e9eda33014febc9616b6d3ecd 100644
|
| --- a/Source/modules/webaudio/AudioContext.h
|
| +++ b/Source/modules/webaudio/AudioContext.h
|
| @@ -68,6 +68,7 @@ class OscillatorNode;
|
| class PannerNode;
|
| class PeriodicWave;
|
| class ScriptProcessorNode;
|
| +class StereoPannerNode;
|
| class WaveShaperNode;
|
|
|
| // AudioContext is the cornerstone of the web audio API and all AudioNodes are created from it.
|
| @@ -122,6 +123,7 @@ public:
|
| ScriptProcessorNode* createScriptProcessor(size_t bufferSize, ExceptionState&);
|
| ScriptProcessorNode* createScriptProcessor(size_t bufferSize, size_t numberOfInputChannels, ExceptionState&);
|
| ScriptProcessorNode* createScriptProcessor(size_t bufferSize, size_t numberOfInputChannels, size_t numberOfOutputChannels, ExceptionState&);
|
| + StereoPannerNode* createStereoPanner();
|
| ChannelSplitterNode* createChannelSplitter(ExceptionState&);
|
| ChannelSplitterNode* createChannelSplitter(size_t numberOfOutputs, ExceptionState&);
|
| ChannelMergerNode* createChannelMerger(ExceptionState&);
|
|
|