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 17a7844f97d2e7eb74ceb3cc51cd3006cbf8825c..a5629b95721797c519a5beba0a10c414d1daf9ae 100644 |
--- a/third_party/WebKit/Source/modules/webaudio/PeriodicWave.h |
+++ b/third_party/WebKit/Source/modules/webaudio/PeriodicWave.h |
@@ -34,6 +34,7 @@ |
#include "platform/audio/AudioArray.h" |
#include "wtf/Forward.h" |
#include "wtf/Vector.h" |
+#include <memory> |
namespace blink { |
@@ -104,7 +105,7 @@ private: |
// Creates tables based on numberOfComponents Fourier coefficients. |
void createBandLimitedTables(const float* real, const float* imag, unsigned numberOfComponents, bool disableNormalization); |
- Vector<OwnPtr<AudioFloatArray>> m_bandLimitedTables; |
+ Vector<std::unique_ptr<AudioFloatArray>> m_bandLimitedTables; |
}; |
} // namespace blink |