| Index: third_party/WebKit/Source/modules/webaudio/PannerNode.h
|
| diff --git a/third_party/WebKit/Source/modules/webaudio/PannerNode.h b/third_party/WebKit/Source/modules/webaudio/PannerNode.h
|
| index ca5fde46e5cfb4536fa281d4e15bd092d9e2ce37..e360a274bcd1c147b778480b23ec68c253df022a 100644
|
| --- a/third_party/WebKit/Source/modules/webaudio/PannerNode.h
|
| +++ b/third_party/WebKit/Source/modules/webaudio/PannerNode.h
|
| @@ -34,7 +34,6 @@
|
| #include "platform/audio/Panner.h"
|
| #include "platform/geometry/FloatPoint3D.h"
|
| #include "wtf/HashMap.h"
|
| -#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -153,7 +152,7 @@ private:
|
| // This Persistent doesn't make a reference cycle including the owner
|
| // PannerNode.
|
| Persistent<AudioListener> m_listener;
|
| - std::unique_ptr<Panner> m_panner;
|
| + OwnPtr<Panner> m_panner;
|
| unsigned m_panningModel;
|
| unsigned m_distanceModel;
|
|
|
|
|