Index: third_party/WebKit/Source/platform/audio/Reverb.h |
diff --git a/third_party/WebKit/Source/platform/audio/Reverb.h b/third_party/WebKit/Source/platform/audio/Reverb.h |
index 1fb29a8f350219b67a7a92ac643dc8ea76f23a2f..3320931cf9ada12fef38f9c5251b1a0b421063a2 100644 |
--- a/third_party/WebKit/Source/platform/audio/Reverb.h |
+++ b/third_party/WebKit/Source/platform/audio/Reverb.h |
@@ -33,6 +33,7 @@ |
#include "wtf/Allocator.h" |
#include "wtf/Noncopyable.h" |
#include "wtf/Vector.h" |
+#include <memory> |
namespace blink { |
@@ -60,7 +61,7 @@ private: |
size_t m_impulseResponseLength; |
- Vector<OwnPtr<ReverbConvolver>> m_convolvers; |
+ Vector<std::unique_ptr<ReverbConvolver>> m_convolvers; |
// For "True" stereo processing |
RefPtr<AudioBus> m_tempBuffer; |