Index: third_party/WebKit/Source/modules/webaudio/AudioNodeInput.h |
diff --git a/third_party/WebKit/Source/modules/webaudio/AudioNodeInput.h b/third_party/WebKit/Source/modules/webaudio/AudioNodeInput.h |
index c790d9ae288e3771710f565504f1531cee40d1ab..3af22081387934f866b57ca06cf918db0d9fdce3 100644 |
--- a/third_party/WebKit/Source/modules/webaudio/AudioNodeInput.h |
+++ b/third_party/WebKit/Source/modules/webaudio/AudioNodeInput.h |
@@ -30,6 +30,7 @@ |
#include "platform/audio/AudioBus.h" |
#include "wtf/Allocator.h" |
#include "wtf/HashSet.h" |
+#include <memory> |
namespace blink { |
@@ -42,7 +43,7 @@ class AudioNodeOutput; |
class AudioNodeInput final : public AudioSummingJunction { |
USING_FAST_MALLOC(AudioNodeInput); |
public: |
- static PassOwnPtr<AudioNodeInput> create(AudioHandler&); |
+ static std::unique_ptr<AudioNodeInput> create(AudioHandler&); |
// AudioSummingJunction |
void didUpdate() override; |