| Index: third_party/WebKit/Source/modules/webaudio/PeriodicWave.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/PeriodicWave.cpp b/third_party/WebKit/Source/modules/webaudio/PeriodicWave.cpp
|
| index cef86012e99c2aa3d4a946e4ed4dae5643bd8393..b71ced33acc527aa074e0c446d2e291ce20f2c21 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/PeriodicWave.cpp
|
| +++ b/third_party/WebKit/Source/modules/webaudio/PeriodicWave.cpp
|
| @@ -297,7 +297,7 @@ void PeriodicWave::createBandLimitedTables(const float* realData,
|
| // Create the band-limited table.
|
| unsigned waveSize = periodicWaveSize();
|
| std::unique_ptr<AudioFloatArray> table =
|
| - makeUnique<AudioFloatArray>(waveSize);
|
| + WTF::makeUnique<AudioFloatArray>(waveSize);
|
| adjustV8ExternalMemory(waveSize * sizeof(float));
|
| m_bandLimitedTables.append(std::move(table));
|
|
|
|
|