| Index: third_party/WebKit/Source/platform/audio/MultiChannelResampler.h
|
| diff --git a/third_party/WebKit/Source/platform/audio/MultiChannelResampler.h b/third_party/WebKit/Source/platform/audio/MultiChannelResampler.h
|
| index 2888e08c62ba3b27561aee88f6d4ca87a4d6c6cc..33f02b21ad94f1b2a4968de7ede2cbe82d61170a 100644
|
| --- a/third_party/WebKit/Source/platform/audio/MultiChannelResampler.h
|
| +++ b/third_party/WebKit/Source/platform/audio/MultiChannelResampler.h
|
| @@ -32,7 +32,7 @@
|
| #include "platform/audio/SincResampler.h"
|
| #include "wtf/Allocator.h"
|
| #include "wtf/Noncopyable.h"
|
| -#include "wtf/OwnPtr.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -53,7 +53,7 @@ private:
|
| // https://bugs.webkit.org/show_bug.cgi?id=75118
|
|
|
| // Each channel will be resampled using a high-quality SincResampler.
|
| - Vector<OwnPtr<SincResampler>> m_kernels;
|
| + Vector<std::unique_ptr<SincResampler>> m_kernels;
|
|
|
| unsigned m_numberOfChannels;
|
| };
|
|
|