Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "base/values.h" | |
| 6 #include "content/common/content_export.h" | |
| 7 #include "ipc/ipc_message_macros.h" | |
| 8 | |
| 9 #undef IPC_MESSAGE_EXPORT | |
| 10 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT | |
| 11 #define IPC_MESSAGE_START MediaTrackLifetimeMetricsHostMsgStart | |
| 12 | |
| 13 // Messages sent to MediaTrackLifetimeMetricsHost. | |
| 14 IPC_MESSAGE_CONTROL2(MediaTrackLifetimeMetrics_AddTrack, | |
| 15 std::string /* id */, | |
| 16 bool /* is_audio */) | |
|
perkj_chrome
2014/03/11 08:05:21
local and remote tracks ?
Jói
2014/03/11 17:36:33
Makes sense to add that right away to avoid an add
| |
| 17 IPC_MESSAGE_CONTROL1(MediaTrackLifetimeMetrics_RemoveTrack, | |
| 18 std::string /* id */) | |
| OLD | NEW |