Index: third_party/WebKit/Source/platform/audio/DynamicsCompressor.h |
diff --git a/third_party/WebKit/Source/platform/audio/DynamicsCompressor.h b/third_party/WebKit/Source/platform/audio/DynamicsCompressor.h |
index b799cad1097cae1704e21e5ce6e72b71aa7a54da..a27ec22f98dfbce27041d10e570046110e5efbda 100644 |
--- a/third_party/WebKit/Source/platform/audio/DynamicsCompressor.h |
+++ b/third_party/WebKit/Source/platform/audio/DynamicsCompressor.h |
@@ -34,7 +34,7 @@ |
#include "platform/audio/ZeroPole.h" |
#include "wtf/Allocator.h" |
#include "wtf/Noncopyable.h" |
-#include <memory> |
+#include "wtf/OwnPtr.h" |
namespace blink { |
@@ -98,8 +98,8 @@ protected: |
float m_lastAnchor; |
float m_lastFilterStageGain; |
- std::unique_ptr<const float*[]> m_sourceChannels; |
- std::unique_ptr<float*[]> m_destinationChannels; |
+ OwnPtr<const float*[]> m_sourceChannels; |
+ OwnPtr<float*[]> m_destinationChannels; |
// The core compressor. |
DynamicsCompressorKernel m_compressor; |