| Index: content/common/media/midi_messages.h
|
| diff --git a/content/common/media/midi_messages.h b/content/common/media/midi_messages.h
|
| index 886adbe0db390516c8ea0f4c3ffa0eab825b3505..4882b379daaecb89fd55d55583def8647b9d367a 100644
|
| --- a/content/common/media/midi_messages.h
|
| +++ b/content/common/media/midi_messages.h
|
| @@ -23,8 +23,7 @@
|
| #define IPC_MESSAGE_EXPORT CONTENT_EXPORT
|
| #define IPC_MESSAGE_START MidiMsgStart
|
|
|
| -IPC_ENUM_TRAITS_MAX_VALUE(midi::MidiPortState,
|
| - midi::MIDI_PORT_STATE_LAST)
|
| +IPC_ENUM_TRAITS_MAX_VALUE(midi::mojom::PortState, midi::mojom::PortState::LAST)
|
|
|
| IPC_STRUCT_TRAITS_BEGIN(midi::MidiPortInfo)
|
| IPC_STRUCT_TRAITS_MEMBER(id)
|
| @@ -58,11 +57,11 @@ IPC_MESSAGE_CONTROL1(MidiMsg_AddOutputPort,
|
|
|
| IPC_MESSAGE_CONTROL2(MidiMsg_SetInputPortState,
|
| uint32_t /* port */,
|
| - midi::MidiPortState /* state */)
|
| + midi::mojom::PortState /* state */)
|
|
|
| IPC_MESSAGE_CONTROL2(MidiMsg_SetOutputPortState,
|
| uint32_t /* port */,
|
| - midi::MidiPortState /* state */)
|
| + midi::mojom::PortState /* state */)
|
|
|
| IPC_MESSAGE_CONTROL1(MidiMsg_SessionStarted, midi::mojom::Result /* result */)
|
|
|
|
|