| 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 a3ea06ea0a2fbfce1d28190fe5b9839619cc4f43..69e1c50d5926d6fc8c37d4be74f8034c4144a142 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(
|
| - DOMFloat32Array* real,
|
| - DOMFloat32Array* imag,
|
| + NotShared<DOMFloat32Array> real,
|
| + NotShared<DOMFloat32Array> imag,
|
| ExceptionState& exception_state) {
|
| DCHECK(IsMainThread());
|
|
|
| @@ -532,8 +532,8 @@ PeriodicWave* BaseAudioContext::createPeriodicWave(
|
| }
|
|
|
| PeriodicWave* BaseAudioContext::createPeriodicWave(
|
| - DOMFloat32Array* real,
|
| - DOMFloat32Array* imag,
|
| + NotShared<DOMFloat32Array> real,
|
| + NotShared<DOMFloat32Array> imag,
|
| const PeriodicWaveConstraints& options,
|
| ExceptionState& exception_state) {
|
| DCHECK(IsMainThread());
|
|
|