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

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

Issue 617093003: Add MediaStreamSource frame rate calculation to the tracker. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adding type name. Fixing IPC type problem. Created 6 years, 2 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
OLDNEW
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 #include "base/values.h" 5 #include "base/values.h"
6 #include "content/common/content_export.h" 6 #include "content/common/content_export.h"
7 #include "ipc/ipc_message_macros.h" 7 #include "ipc/ipc_message_macros.h"
8 8
9 #undef IPC_MESSAGE_EXPORT 9 #undef IPC_MESSAGE_EXPORT
10 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT 10 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT
(...skipping 19 matching lines...) Expand all
30 int /* lid */, 30 int /* lid */,
31 base::ListValue /* value */) 31 base::ListValue /* value */)
32 IPC_MESSAGE_CONTROL5(PeerConnectionTrackerHost_GetUserMedia, 32 IPC_MESSAGE_CONTROL5(PeerConnectionTrackerHost_GetUserMedia,
33 std::string /*origin*/, 33 std::string /*origin*/,
34 bool /*audio*/, 34 bool /*audio*/,
35 bool /*video*/, 35 bool /*video*/,
36 // The constraints strings are for dispaly only and should 36 // The constraints strings are for dispaly only and should
37 // not be parsed by the browser for security reasons. 37 // not be parsed by the browser for security reasons.
38 std::string /* audio_constraints */, 38 std::string /* audio_constraints */,
39 std::string /* video_constraints */) 39 std::string /* video_constraints */)
40 IPC_MESSAGE_CONTROL3(PeerConnectionTrackerHost_AddVideoStats,
41 std::string /* video_id */,
42 float /* input_frame_rate */,
43 int /* number_of_dropped_frames */)
40 44
41 // Messages sent to PeerConnectionTracker. 45 // Messages sent to PeerConnectionTracker.
42 IPC_MESSAGE_CONTROL0(PeerConnectionTracker_GetAllStats) 46 IPC_MESSAGE_CONTROL0(PeerConnectionTracker_GetAllStats)
43 IPC_MESSAGE_CONTROL0(PeerConnectionTracker_OnSuspend) 47 IPC_MESSAGE_CONTROL0(PeerConnectionTracker_OnSuspend)
OLDNEW
« no previous file with comments | « content/common/media/media_param_traits.cc ('k') | content/renderer/media/media_stream_video_source.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698