| Index: third_party/WebKit/Source/modules/webaudio/RealtimeAnalyser.h
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/RealtimeAnalyser.h b/third_party/WebKit/Source/modules/webaudio/RealtimeAnalyser.h
|
| index 2b27a00c42ffedded38d5215f56d415ee98f5847..6d61f94a6cdec8ca7ee821246122bf189867e99f 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/RealtimeAnalyser.h
|
| +++ b/third_party/WebKit/Source/modules/webaudio/RealtimeAnalyser.h
|
| @@ -29,7 +29,7 @@
|
| #include "platform/audio/AudioArray.h"
|
| #include "platform/audio/FFTFrame.h"
|
| #include "wtf/Noncopyable.h"
|
| -#include "wtf/OwnPtr.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -81,7 +81,7 @@ private:
|
| RefPtr<AudioBus> m_downMixBus;
|
|
|
| size_t m_fftSize;
|
| - OwnPtr<FFTFrame> m_analysisFrame;
|
| + std::unique_ptr<FFTFrame> m_analysisFrame;
|
| void doFFTAnalysis();
|
|
|
| // Convert the contents of magnitudeBuffer to byte values, saving the result in |destination|.
|
|
|