Chromium Code Reviews| Index: content/common/media/peer_connection_tracker_messages.h |
| diff --git a/content/common/media/peer_connection_tracker_messages.h b/content/common/media/peer_connection_tracker_messages.h |
| index cd774bea3fc2f93d7e000b144424fcb2c72af1d1..a1c65e54ecac6e550e9bc9c5d59179df54ad3d03 100644 |
| --- a/content/common/media/peer_connection_tracker_messages.h |
| +++ b/content/common/media/peer_connection_tracker_messages.h |
| @@ -5,6 +5,7 @@ |
| #include "base/values.h" |
| #include "content/common/content_export.h" |
| #include "ipc/ipc_message_macros.h" |
| +#include "ipc/ipc_platform_file.h" |
| #undef IPC_MESSAGE_EXPORT |
| #define IPC_MESSAGE_EXPORT CONTENT_EXPORT |
| @@ -41,3 +42,8 @@ IPC_MESSAGE_CONTROL5(PeerConnectionTrackerHost_GetUserMedia, |
| // Messages sent to PeerConnectionTracker. |
| IPC_MESSAGE_CONTROL0(PeerConnectionTracker_GetAllStats) |
| IPC_MESSAGE_CONTROL0(PeerConnectionTracker_OnSuspend) |
| +IPC_MESSAGE_CONTROL3(PeerConnectionTracker_StartEventLog, |
| + int /* lid */, |
| + IPC::PlatformFileForTransit /* file */, |
| + int64_t /* max_file_size_bytes */) |
|
dcheng
2016/05/10 06:48:17
Why not unsigned?
Ivo-OOO until feb 6
2016/05/12 13:23:24
This value represents a file size on disk. Althoug
|
| +IPC_MESSAGE_CONTROL1(PeerConnectionTracker_StopEventLog, int /* lid */) |