Index: third_party/WebKit/Source/platform/audio/DynamicsCompressorKernel.h |
diff --git a/third_party/WebKit/Source/platform/audio/DynamicsCompressorKernel.h b/third_party/WebKit/Source/platform/audio/DynamicsCompressorKernel.h |
index e743edeaf5e7564e27019b63a96379e512ca7e41..32da6256eec9e49bf73f955e4cec19ca64b594b1 100644 |
--- a/third_party/WebKit/Source/platform/audio/DynamicsCompressorKernel.h |
+++ b/third_party/WebKit/Source/platform/audio/DynamicsCompressorKernel.h |
@@ -33,8 +33,7 @@ |
#include "platform/audio/AudioArray.h" |
#include "wtf/Allocator.h" |
#include "wtf/Noncopyable.h" |
-#include "wtf/OwnPtr.h" |
-#include "wtf/PassOwnPtr.h" |
+#include <memory> |
namespace blink { |
@@ -92,7 +91,7 @@ protected: |
unsigned m_lastPreDelayFrames; |
void setPreDelayTime(float); |
- Vector<OwnPtr<AudioFloatArray>> m_preDelayBuffers; |
+ Vector<std::unique_ptr<AudioFloatArray>> m_preDelayBuffers; |
int m_preDelayReadIndex; |
int m_preDelayWriteIndex; |