| Index: third_party/WebKit/Source/modules/webaudio/StereoPannerNode.h | 
| diff --git a/third_party/WebKit/Source/modules/webaudio/StereoPannerNode.h b/third_party/WebKit/Source/modules/webaudio/StereoPannerNode.h | 
| index 7f418da3a8635ccd6d9ebbc7529c59197f268265..c16bee95c59d429aa7b2f86f55b637e245b04aaf 100644 | 
| --- a/third_party/WebKit/Source/modules/webaudio/StereoPannerNode.h | 
| +++ b/third_party/WebKit/Source/modules/webaudio/StereoPannerNode.h | 
| @@ -15,6 +15,7 @@ | 
| namespace blink { | 
|  | 
| class BaseAudioContext; | 
| +class StereoPannerOptions; | 
|  | 
| // StereoPannerNode is an AudioNode with one input and one output. It is | 
| // specifically designed for equal-power stereo panning. | 
| @@ -44,6 +45,7 @@ class StereoPannerNode final : public AudioNode { | 
| DEFINE_WRAPPERTYPEINFO(); | 
| public: | 
| static StereoPannerNode* create(BaseAudioContext&, ExceptionState&); | 
| +    static StereoPannerNode* create(BaseAudioContext*, const StereoPannerOptions&, ExceptionState&); | 
| DECLARE_VIRTUAL_TRACE(); | 
|  | 
| AudioParam* pan() const; | 
|  |