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