| Index: third_party/WebKit/Source/modules/webaudio/ConvolverNode.h
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/ConvolverNode.h b/third_party/WebKit/Source/modules/webaudio/ConvolverNode.h
|
| index 294fde6d53a56570f4535af10aa2cf0a0cff7d96..d27be4e83af27522b3823807085bcccfc2db8d95 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/ConvolverNode.h
|
| +++ b/third_party/WebKit/Source/modules/webaudio/ConvolverNode.h
|
| @@ -28,9 +28,9 @@
|
| #include "base/gtest_prod_util.h"
|
| #include "modules/ModulesExport.h"
|
| #include "modules/webaudio/AudioNode.h"
|
| -#include "wtf/OwnPtr.h"
|
| #include "wtf/RefPtr.h"
|
| #include "wtf/ThreadingPrimitives.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -58,7 +58,7 @@ private:
|
| double tailTime() const override;
|
| double latencyTime() const override;
|
|
|
| - OwnPtr<Reverb> m_reverb;
|
| + std::unique_ptr<Reverb> m_reverb;
|
| // This Persistent doesn't make a reference cycle including the owner
|
| // ConvolverNode.
|
| Persistent<AudioBuffer> m_buffer;
|
|
|