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