| Index: third_party/WebKit/Source/modules/webaudio/BaseAudioContext.h
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/BaseAudioContext.h b/third_party/WebKit/Source/modules/webaudio/BaseAudioContext.h
|
| index a4a6f4f8540f15fd4ce73c9946155bfd8c3285e2..eaa1be1243d94f9fae87f1e5dd7027db1dc7b2e9 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/BaseAudioContext.h
|
| +++ b/third_party/WebKit/Source/modules/webaudio/BaseAudioContext.h
|
| @@ -221,11 +221,11 @@ class MODULES_EXPORT BaseAudioContext
|
| ChannelMergerNode* createChannelMerger(size_t number_of_inputs,
|
| ExceptionState&);
|
| OscillatorNode* createOscillator(ExceptionState&);
|
| - PeriodicWave* createPeriodicWave(NotShared<DOMFloat32Array> real,
|
| - NotShared<DOMFloat32Array> imag,
|
| + PeriodicWave* createPeriodicWave(const Vector<float>& real,
|
| + const Vector<float>& imag,
|
| ExceptionState&);
|
| - PeriodicWave* createPeriodicWave(NotShared<DOMFloat32Array> real,
|
| - NotShared<DOMFloat32Array> imag,
|
| + PeriodicWave* createPeriodicWave(const Vector<float>& real,
|
| + const Vector<float>& imag,
|
| const PeriodicWaveConstraints&,
|
| ExceptionState&);
|
|
|
|
|