| Index: third_party/WebKit/Source/modules/webaudio/MediaElementAudioSourceNode.h
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/MediaElementAudioSourceNode.h b/third_party/WebKit/Source/modules/webaudio/MediaElementAudioSourceNode.h
|
| index c0181005027640c02f3376ee13f3c85fa44f3fe4..20fa9a620af81fbe2e2548a352d863d16fac635a 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/MediaElementAudioSourceNode.h
|
| +++ b/third_party/WebKit/Source/modules/webaudio/MediaElementAudioSourceNode.h
|
| @@ -28,9 +28,9 @@
|
| #include "modules/webaudio/AudioSourceNode.h"
|
| #include "platform/audio/AudioSourceProviderClient.h"
|
| #include "platform/audio/MultiChannelResampler.h"
|
| -#include "wtf/OwnPtr.h"
|
| #include "wtf/PassRefPtr.h"
|
| #include "wtf/ThreadingPrimitives.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -78,7 +78,7 @@ private:
|
| unsigned m_sourceNumberOfChannels;
|
| double m_sourceSampleRate;
|
|
|
| - OwnPtr<MultiChannelResampler> m_multiChannelResampler;
|
| + std::unique_ptr<MultiChannelResampler> m_multiChannelResampler;
|
|
|
| // |m_passesCurrentSrcCORSAccessCheck| holds the value of
|
| // context()->getSecurityOrigin() && context()->getSecurityOrigin()->canRequest(mediaElement()->currentSrc()),
|
|
|