| Index: third_party/WebKit/Source/platform/audio/AudioResampler.h
|
| diff --git a/third_party/WebKit/Source/platform/audio/AudioResampler.h b/third_party/WebKit/Source/platform/audio/AudioResampler.h
|
| index 5fc4636cc1823b62fdf6959feef3c5edafd6753d..1f6298ca088513b374053847ce81e1b281784c2d 100644
|
| --- a/third_party/WebKit/Source/platform/audio/AudioResampler.h
|
| +++ b/third_party/WebKit/Source/platform/audio/AudioResampler.h
|
| @@ -30,8 +30,8 @@
|
| #include "platform/audio/AudioSourceProvider.h"
|
| #include "wtf/Allocator.h"
|
| #include "wtf/Noncopyable.h"
|
| -#include "wtf/OwnPtr.h"
|
| #include "wtf/Vector.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -63,7 +63,7 @@ public:
|
|
|
| private:
|
| double m_rate;
|
| - Vector<OwnPtr<AudioResamplerKernel>> m_kernels;
|
| + Vector<std::unique_ptr<AudioResamplerKernel>> m_kernels;
|
| RefPtr<AudioBus> m_sourceBus;
|
| };
|
|
|
|
|