| Index: third_party/WebKit/Source/modules/webaudio/PeriodicWave.h
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/PeriodicWave.h b/third_party/WebKit/Source/modules/webaudio/PeriodicWave.h
|
| index 1e44125382cfd74d7c269c4969791c076bc0460b..44404f502f650a602834514269554e8b0b1384a9 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/PeriodicWave.h
|
| +++ b/third_party/WebKit/Source/modules/webaudio/PeriodicWave.h
|
| @@ -56,16 +56,8 @@ class PeriodicWave final : public GarbageCollectedFinalized<PeriodicWave>,
|
| // Creates an arbitrary periodic wave given the frequency components (Fourier
|
| // coefficients).
|
| static PeriodicWave* Create(BaseAudioContext&,
|
| - size_t real_length,
|
| - const float* real,
|
| - size_t imag_length,
|
| - const float* imag,
|
| - bool normalize,
|
| - ExceptionState&);
|
| -
|
| - static PeriodicWave* Create(BaseAudioContext&,
|
| - NotShared<DOMFloat32Array> real,
|
| - NotShared<DOMFloat32Array> imag,
|
| + const Vector<float>& real,
|
| + const Vector<float>& imag,
|
| bool normalize,
|
| ExceptionState&);
|
|
|
|
|