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