| Index: third_party/WebKit/Source/modules/webaudio/BaseAudioContext.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/BaseAudioContext.cpp b/third_party/WebKit/Source/modules/webaudio/BaseAudioContext.cpp
|
| index 4ff9d1bf1e6a8589c481557393f4a4cb573caa5d..392727ed75b856204eab4c204c11199ae5b35e23 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/BaseAudioContext.cpp
|
| +++ b/third_party/WebKit/Source/modules/webaudio/BaseAudioContext.cpp
|
| @@ -523,8 +523,8 @@ OscillatorNode* BaseAudioContext::createOscillator(
|
| }
|
|
|
| PeriodicWave* BaseAudioContext::createPeriodicWave(
|
| - NotShared<DOMFloat32Array> real,
|
| - NotShared<DOMFloat32Array> imag,
|
| + const Vector<float>& real,
|
| + const Vector<float>& imag,
|
| ExceptionState& exception_state) {
|
| DCHECK(IsMainThread());
|
|
|
| @@ -532,8 +532,8 @@ PeriodicWave* BaseAudioContext::createPeriodicWave(
|
| }
|
|
|
| PeriodicWave* BaseAudioContext::createPeriodicWave(
|
| - NotShared<DOMFloat32Array> real,
|
| - NotShared<DOMFloat32Array> imag,
|
| + const Vector<float>& real,
|
| + const Vector<float>& imag,
|
| const PeriodicWaveConstraints& options,
|
| ExceptionState& exception_state) {
|
| DCHECK(IsMainThread());
|
|
|