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 6d61f94a6cdec8ca7ee821246122bf189867e99f..2b27a00c42ffedded38d5215f56d415ee98f5847 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 <memory> |
+#include "wtf/OwnPtr.h" |
namespace blink { |
@@ -81,7 +81,7 @@ private: |
RefPtr<AudioBus> m_downMixBus; |
size_t m_fftSize; |
- std::unique_ptr<FFTFrame> m_analysisFrame; |
+ OwnPtr<FFTFrame> m_analysisFrame; |
void doFFTAnalysis(); |
// Convert the contents of magnitudeBuffer to byte values, saving the result in |destination|. |