Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(709)

Side by Side Diff: content/common/media/media_stream_track_metrics_host_messages.h

Issue 183973021: Add metrics to track the duration of tracks received over a PeerConnection. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address review comments. Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 MediaStreamTrackMetricsHostMsgStart
12
13 // Messages sent to MediaStreamTrackMetricsHost.
14 IPC_MESSAGE_CONTROL3(MediaStreamTrackMetricsHost_AddTrack,
15 std::string /* id */,
16 bool /* is_audio */,
17 bool /* is_remote */)
18 IPC_MESSAGE_CONTROL1(MediaStreamTrackMetricsHost_RemoveTrack,
19 std::string /* id */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698