| Index: Source/modules/webaudio/AudioScheduledSourceNode.h
|
| diff --git a/Source/modules/webaudio/AudioScheduledSourceNode.h b/Source/modules/webaudio/AudioScheduledSourceNode.h
|
| index a0f975d375fb49130db4e12cc31e408e66ee5be3..e89cd76bf0d0df729dbcefad2982466f9cdbda4d 100644
|
| --- a/Source/modules/webaudio/AudioScheduledSourceNode.h
|
| +++ b/Source/modules/webaudio/AudioScheduledSourceNode.h
|
| @@ -68,9 +68,9 @@ public:
|
| AudioScheduledSourceNode(AudioContext*, float sampleRate);
|
|
|
| // Scheduling.
|
| - void start(ExceptionState& es) { start(0.0, es); }
|
| + void start(ExceptionState& exceptionState) { start(0.0, exceptionState); }
|
| void start(double when, ExceptionState&);
|
| - void stop(ExceptionState& es) { stop(0.0, es); }
|
| + void stop(ExceptionState& exceptionState) { stop(0.0, exceptionState); }
|
| void stop(double when, ExceptionState&);
|
|
|
| unsigned short playbackState() const { return static_cast<unsigned short>(m_playbackState); }
|
|
|