| 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 #ifndef CONTENT_COMMON_MEDIA_MEDIA_STREAM_TRACK_METRICS_HOST_MESSAGES_H_ |
| 6 #define CONTENT_COMMON_MEDIA_MEDIA_STREAM_TRACK_METRICS_HOST_MESSAGES_H_ |
| 7 |
| 5 #include <stdint.h> | 8 #include <stdint.h> |
| 6 | 9 |
| 7 #include "base/values.h" | 10 #include "base/values.h" |
| 8 #include "content/common/content_export.h" | 11 #include "content/common/content_export.h" |
| 9 #include "ipc/ipc_message_macros.h" | 12 #include "ipc/ipc_message_macros.h" |
| 10 | 13 |
| 11 #undef IPC_MESSAGE_EXPORT | 14 #undef IPC_MESSAGE_EXPORT |
| 12 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT | 15 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT |
| 13 #define IPC_MESSAGE_START MediaStreamTrackMetricsHostMsgStart | 16 #define IPC_MESSAGE_START MediaStreamTrackMetricsHostMsgStart |
| 14 | 17 |
| 15 // Messages sent to MediaStreamTrackMetricsHost. | 18 // Messages sent to MediaStreamTrackMetricsHost. |
| 16 IPC_MESSAGE_CONTROL3(MediaStreamTrackMetricsHost_AddTrack, | 19 IPC_MESSAGE_CONTROL3(MediaStreamTrackMetricsHost_AddTrack, |
| 17 uint64_t /* id */, | 20 uint64_t /* id */, |
| 18 bool /* is_audio */, | 21 bool /* is_audio */, |
| 19 bool /* is_remote */) | 22 bool /* is_remote */) |
| 20 IPC_MESSAGE_CONTROL1(MediaStreamTrackMetricsHost_RemoveTrack, uint64_t /* id */) | 23 IPC_MESSAGE_CONTROL1(MediaStreamTrackMetricsHost_RemoveTrack, uint64_t /* id */) |
| 24 |
| 25 #endif // CONTENT_COMMON_MEDIA_MEDIA_STREAM_TRACK_METRICS_HOST_MESSAGES_H_ |
| OLD | NEW |