| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // IPC messages for access to MIDI hardware. | 5 // IPC messages for access to MIDI hardware. |
| 6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
| 7 | 7 |
| 8 // TODO(toyoshim): Mojofication is working in progress. Until the work is |
| 9 // finished, this file temporarily depends on midi_service.mojom.h. |
| 10 // Once the migration is finished, this file will be removed. |
| 11 // http://crbug.com/582327 |
| 12 |
| 8 #include <stdint.h> | 13 #include <stdint.h> |
| 9 | 14 |
| 10 #include "content/common/content_export.h" | 15 #include "content/common/content_export.h" |
| 11 #include "ipc/ipc_message_macros.h" | 16 #include "ipc/ipc_message_macros.h" |
| 12 #include "ipc/param_traits_macros.h" | 17 #include "ipc/param_traits_macros.h" |
| 13 #include "media/midi/midi_port_info.h" | 18 #include "media/midi/midi_port_info.h" |
| 14 #include "media/midi/result.h" | 19 #include "media/midi/midi_service.mojom.h" |
| 15 #include "url/gurl.h" | 20 #include "url/gurl.h" |
| 16 | 21 |
| 17 #undef IPC_MESSAGE_EXPORT | 22 #undef IPC_MESSAGE_EXPORT |
| 18 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT | 23 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT |
| 19 #define IPC_MESSAGE_START MidiMsgStart | 24 #define IPC_MESSAGE_START MidiMsgStart |
| 20 | 25 |
| 21 IPC_ENUM_TRAITS_MAX_VALUE(media::midi::MidiPortState, | 26 IPC_ENUM_TRAITS_MAX_VALUE(media::midi::MidiPortState, |
| 22 media::midi::MIDI_PORT_STATE_LAST) | 27 media::midi::MIDI_PORT_STATE_LAST) |
| 23 | 28 |
| 24 IPC_STRUCT_TRAITS_BEGIN(media::midi::MidiPortInfo) | 29 IPC_STRUCT_TRAITS_BEGIN(media::midi::MidiPortInfo) |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 media::midi::MidiPortState /* state */) | 65 media::midi::MidiPortState /* state */) |
| 61 | 66 |
| 62 IPC_MESSAGE_CONTROL1(MidiMsg_SessionStarted, media::midi::Result /* result */) | 67 IPC_MESSAGE_CONTROL1(MidiMsg_SessionStarted, media::midi::Result /* result */) |
| 63 | 68 |
| 64 IPC_MESSAGE_CONTROL3(MidiMsg_DataReceived, | 69 IPC_MESSAGE_CONTROL3(MidiMsg_DataReceived, |
| 65 uint32_t /* port */, | 70 uint32_t /* port */, |
| 66 std::vector<uint8_t> /* data */, | 71 std::vector<uint8_t> /* data */, |
| 67 double /* timestamp */) | 72 double /* timestamp */) |
| 68 | 73 |
| 69 IPC_MESSAGE_CONTROL1(MidiMsg_AcknowledgeSentData, uint32_t /* bytes sent */) | 74 IPC_MESSAGE_CONTROL1(MidiMsg_AcknowledgeSentData, uint32_t /* bytes sent */) |
| OLD | NEW |