Index: chrome/common/media/webrtc_logging_messages.h |
diff --git a/chrome/common/media/webrtc_logging_messages.h b/chrome/common/media/webrtc_logging_messages.h |
index e28cca3e1997a3692a35190567eca6204da7ef14..d87acf0b40995aa2fe3b90f6cc6fb02816a1744b 100644 |
--- a/chrome/common/media/webrtc_logging_messages.h |
+++ b/chrome/common/media/webrtc_logging_messages.h |
@@ -12,11 +12,16 @@ |
#define IPC_MESSAGE_START WebRtcLoggingMsgStart |
+IPC_STRUCT_BEGIN(WebRtcLoggingMessage) |
+ IPC_STRUCT_MEMBER(uint64, timestamp_ms) |
+ IPC_STRUCT_MEMBER(std::string, message) |
+IPC_STRUCT_END() |
+ |
// Messages sent from the renderer to the browser. |
// Send log message to add to log. |
-IPC_MESSAGE_CONTROL1(WebRtcLoggingMsg_AddLogMessage, |
- std::string /* message */) |
+IPC_MESSAGE_CONTROL1(WebRtcLoggingMsg_AddLogMessages, |
+ std::vector<WebRtcLoggingMessage> /* messages */) |
// Notification that the renderer has stopped sending log messages to the |
// browser. |