| 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 #ifndef CONTENT_COMMON_MEDIA_PEER_CONNECTION_TRACKER_MESSAGES_H_ |
| 6 #define CONTENT_COMMON_MEDIA_PEER_CONNECTION_TRACKER_MESSAGES_H_ |
| 7 |
| 5 #include "base/values.h" | 8 #include "base/values.h" |
| 6 #include "content/common/content_export.h" | 9 #include "content/common/content_export.h" |
| 7 #include "ipc/ipc_message_macros.h" | 10 #include "ipc/ipc_message_macros.h" |
| 8 #include "ipc/ipc_platform_file.h" | 11 #include "ipc/ipc_platform_file.h" |
| 9 | 12 |
| 10 #undef IPC_MESSAGE_EXPORT | 13 #undef IPC_MESSAGE_EXPORT |
| 11 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT | 14 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT |
| 12 #define IPC_MESSAGE_START PeerConnectionTrackerMsgStart | 15 #define IPC_MESSAGE_START PeerConnectionTrackerMsgStart |
| 13 | 16 |
| 14 IPC_STRUCT_BEGIN(PeerConnectionInfo) | 17 IPC_STRUCT_BEGIN(PeerConnectionInfo) |
| (...skipping 25 matching lines...) Expand all Loading... |
| 40 std::string /* video_constraints */) | 43 std::string /* video_constraints */) |
| 41 | 44 |
| 42 // Messages sent to PeerConnectionTracker. | 45 // Messages sent to PeerConnectionTracker. |
| 43 IPC_MESSAGE_CONTROL0(PeerConnectionTracker_GetAllStats) | 46 IPC_MESSAGE_CONTROL0(PeerConnectionTracker_GetAllStats) |
| 44 IPC_MESSAGE_CONTROL0(PeerConnectionTracker_OnSuspend) | 47 IPC_MESSAGE_CONTROL0(PeerConnectionTracker_OnSuspend) |
| 45 IPC_MESSAGE_CONTROL2(PeerConnectionTracker_StartEventLog, | 48 IPC_MESSAGE_CONTROL2(PeerConnectionTracker_StartEventLog, |
| 46 int /* peer_connection_local_id */, | 49 int /* peer_connection_local_id */, |
| 47 IPC::PlatformFileForTransit /* file */) | 50 IPC::PlatformFileForTransit /* file */) |
| 48 IPC_MESSAGE_CONTROL1(PeerConnectionTracker_StopEventLog, | 51 IPC_MESSAGE_CONTROL1(PeerConnectionTracker_StopEventLog, |
| 49 int /* peer_connection_local_id */) | 52 int /* peer_connection_local_id */) |
| 53 |
| 54 #endif // CONTENT_COMMON_MEDIA_PEER_CONNECTION_TRACKER_MESSAGES_H_ |
| OLD | NEW |