| Index: third_party/WebKit/Source/platform/audio/ReverbConvolverStage.h
|
| diff --git a/third_party/WebKit/Source/platform/audio/ReverbConvolverStage.h b/third_party/WebKit/Source/platform/audio/ReverbConvolverStage.h
|
| index 8b4983af8909acbee9ce850f63c3a7196fbd00a9..e1b99d3eefe0da4aa13638fe1960ff7773ae28d4 100644
|
| --- a/third_party/WebKit/Source/platform/audio/ReverbConvolverStage.h
|
| +++ b/third_party/WebKit/Source/platform/audio/ReverbConvolverStage.h
|
| @@ -33,7 +33,7 @@
|
| #include "platform/audio/FFTFrame.h"
|
| #include "wtf/Allocator.h"
|
| #include "wtf/Noncopyable.h"
|
| -#include "wtf/OwnPtr.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -63,8 +63,8 @@ public:
|
| int inputReadIndex() const { return m_inputReadIndex; }
|
|
|
| private:
|
| - OwnPtr<FFTFrame> m_fftKernel;
|
| - OwnPtr<FFTConvolver> m_fftConvolver;
|
| + std::unique_ptr<FFTFrame> m_fftKernel;
|
| + std::unique_ptr<FFTConvolver> m_fftConvolver;
|
|
|
| AudioFloatArray m_preDelayBuffer;
|
|
|
| @@ -80,8 +80,8 @@ private:
|
| AudioFloatArray m_temporaryBuffer;
|
|
|
| bool m_directMode;
|
| - OwnPtr<AudioFloatArray> m_directKernel;
|
| - OwnPtr<DirectConvolver> m_directConvolver;
|
| + std::unique_ptr<AudioFloatArray> m_directKernel;
|
| + std::unique_ptr<DirectConvolver> m_directConvolver;
|
| };
|
|
|
| } // namespace blink
|
|
|