| Index: third_party/WebKit/Source/modules/webmidi/MIDIAccessorClient.h
|
| diff --git a/third_party/WebKit/Source/modules/webmidi/MIDIAccessorClient.h b/third_party/WebKit/Source/modules/webmidi/MIDIAccessorClient.h
|
| index 5aea85f2723120aaffe9cb2f5b8ac133122015c1..6dc017c829de10f8cf06cde3c37aac2d8fb58e76 100644
|
| --- a/third_party/WebKit/Source/modules/webmidi/MIDIAccessorClient.h
|
| +++ b/third_party/WebKit/Source/modules/webmidi/MIDIAccessorClient.h
|
| @@ -31,6 +31,7 @@
|
| #ifndef MIDIAccessorClient_h
|
| #define MIDIAccessorClient_h
|
|
|
| +#include "media/midi/midi_service.mojom-blink.h"
|
| #include "modules/webmidi/MIDIAccessor.h"
|
| #include "wtf/Forward.h"
|
|
|
| @@ -42,16 +43,16 @@ class MIDIAccessorClient {
|
| const String& manufacturer,
|
| const String& name,
|
| const String& version,
|
| - MIDIAccessor::MIDIPortState) = 0;
|
| + midi::mojom::PortState) = 0;
|
| virtual void didAddOutputPort(const String& id,
|
| const String& manufacturer,
|
| const String& name,
|
| const String& version,
|
| - MIDIAccessor::MIDIPortState) = 0;
|
| + midi::mojom::PortState) = 0;
|
| virtual void didSetInputPortState(unsigned portIndex,
|
| - MIDIAccessor::MIDIPortState) = 0;
|
| + midi::mojom::PortState) = 0;
|
| virtual void didSetOutputPortState(unsigned portIndex,
|
| - MIDIAccessor::MIDIPortState) = 0;
|
| + midi::mojom::PortState) = 0;
|
|
|
| virtual void didStartSession(midi::mojom::Result) = 0;
|
| virtual void didReceiveMIDIData(unsigned portIndex,
|
|
|