Index: third_party/WebKit/Source/modules/webmidi/MIDIClient.h |
diff --git a/third_party/WebKit/Source/modules/webmidi/MIDIClient.h b/third_party/WebKit/Source/modules/webmidi/MIDIClient.h |
index f260923e26a3abd47d4eb87dd92f5115ad691a66..c5a93e34d28ae9876b8e2476c50a8fb249652b8b 100644 |
--- a/third_party/WebKit/Source/modules/webmidi/MIDIClient.h |
+++ b/third_party/WebKit/Source/modules/webmidi/MIDIClient.h |
@@ -33,6 +33,7 @@ |
#include "modules/ModulesExport.h" |
#include "platform/heap/Handle.h" |
+#include <memory> |
namespace blink { |
@@ -48,7 +49,7 @@ public: |
virtual ~MIDIClient() { } |
}; |
-MODULES_EXPORT void provideMIDITo(LocalFrame&, PassOwnPtr<MIDIClient>); |
+MODULES_EXPORT void provideMIDITo(LocalFrame&, std::unique_ptr<MIDIClient>); |
} // namespace blink |