| Index: third_party/WebKit/Source/platform/audio/Reverb.h
|
| diff --git a/third_party/WebKit/Source/platform/audio/Reverb.h b/third_party/WebKit/Source/platform/audio/Reverb.h
|
| index 3320931cf9ada12fef38f9c5251b1a0b421063a2..1fb29a8f350219b67a7a92ac643dc8ea76f23a2f 100644
|
| --- a/third_party/WebKit/Source/platform/audio/Reverb.h
|
| +++ b/third_party/WebKit/Source/platform/audio/Reverb.h
|
| @@ -33,7 +33,6 @@
|
| #include "wtf/Allocator.h"
|
| #include "wtf/Noncopyable.h"
|
| #include "wtf/Vector.h"
|
| -#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -61,7 +60,7 @@ private:
|
|
|
| size_t m_impulseResponseLength;
|
|
|
| - Vector<std::unique_ptr<ReverbConvolver>> m_convolvers;
|
| + Vector<OwnPtr<ReverbConvolver>> m_convolvers;
|
|
|
| // For "True" stereo processing
|
| RefPtr<AudioBus> m_tempBuffer;
|
|
|