| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 the Cast transport API. | 5 // IPC messages for the Cast transport API. |
| 6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
| 7 | 7 |
| 8 #include "ipc/ipc_message_macros.h" | 8 #include "ipc/ipc_message_macros.h" |
| 9 #include "media/cast/cast_sender.h" | 9 #include "media/cast/cast_sender.h" |
| 10 #include "media/cast/logging/logging_defines.h" | 10 #include "media/cast/logging/logging_defines.h" |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 media::cast::kNumOfLoggingEvents) | 27 media::cast::kNumOfLoggingEvents) |
| 28 IPC_ENUM_TRAITS_MAX_VALUE(media::cast::EventMediaType, | 28 IPC_ENUM_TRAITS_MAX_VALUE(media::cast::EventMediaType, |
| 29 media::cast::EVENT_MEDIA_TYPE_LAST) | 29 media::cast::EVENT_MEDIA_TYPE_LAST) |
| 30 | 30 |
| 31 IPC_STRUCT_TRAITS_BEGIN(media::cast::EncodedFrame) | 31 IPC_STRUCT_TRAITS_BEGIN(media::cast::EncodedFrame) |
| 32 IPC_STRUCT_TRAITS_MEMBER(dependency) | 32 IPC_STRUCT_TRAITS_MEMBER(dependency) |
| 33 IPC_STRUCT_TRAITS_MEMBER(frame_id) | 33 IPC_STRUCT_TRAITS_MEMBER(frame_id) |
| 34 IPC_STRUCT_TRAITS_MEMBER(referenced_frame_id) | 34 IPC_STRUCT_TRAITS_MEMBER(referenced_frame_id) |
| 35 IPC_STRUCT_TRAITS_MEMBER(rtp_timestamp) | 35 IPC_STRUCT_TRAITS_MEMBER(rtp_timestamp) |
| 36 IPC_STRUCT_TRAITS_MEMBER(reference_time) | 36 IPC_STRUCT_TRAITS_MEMBER(reference_time) |
| 37 IPC_STRUCT_TRAITS_MEMBER(new_playout_delay_ms) |
| 37 IPC_STRUCT_TRAITS_MEMBER(data) | 38 IPC_STRUCT_TRAITS_MEMBER(data) |
| 38 IPC_STRUCT_TRAITS_END() | 39 IPC_STRUCT_TRAITS_END() |
| 39 | 40 |
| 40 IPC_STRUCT_TRAITS_BEGIN(media::cast::RtcpDlrrReportBlock) | 41 IPC_STRUCT_TRAITS_BEGIN(media::cast::RtcpDlrrReportBlock) |
| 41 IPC_STRUCT_TRAITS_MEMBER(last_rr) | 42 IPC_STRUCT_TRAITS_MEMBER(last_rr) |
| 42 IPC_STRUCT_TRAITS_MEMBER(delay_since_last_rr) | 43 IPC_STRUCT_TRAITS_MEMBER(delay_since_last_rr) |
| 43 IPC_STRUCT_TRAITS_END() | 44 IPC_STRUCT_TRAITS_END() |
| 44 | 45 |
| 45 IPC_STRUCT_TRAITS_BEGIN(media::cast::CastTransportRtpConfig) | 46 IPC_STRUCT_TRAITS_BEGIN(media::cast::CastTransportRtpConfig) |
| 46 IPC_STRUCT_TRAITS_MEMBER(ssrc) | 47 IPC_STRUCT_TRAITS_MEMBER(ssrc) |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 uint32 /* frame_id */) | 153 uint32 /* frame_id */) |
| 153 | 154 |
| 154 IPC_MESSAGE_CONTROL2( | 155 IPC_MESSAGE_CONTROL2( |
| 155 CastHostMsg_New, | 156 CastHostMsg_New, |
| 156 int32 /* channel_id */, | 157 int32 /* channel_id */, |
| 157 net::IPEndPoint /*remote_end_point*/) | 158 net::IPEndPoint /*remote_end_point*/) |
| 158 | 159 |
| 159 IPC_MESSAGE_CONTROL1( | 160 IPC_MESSAGE_CONTROL1( |
| 160 CastHostMsg_Delete, | 161 CastHostMsg_Delete, |
| 161 int32 /* channel_id */) | 162 int32 /* channel_id */) |
| OLD | NEW |