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 cceea8f800f93b8af4b7a549fcb3d93b755b7e52..af2ada3e2ad6c1912b8946a9cb54707283785be5 100644 |
--- a/chrome/common/media/webrtc_logging_messages.h |
+++ b/chrome/common/media/webrtc_logging_messages.h |
@@ -12,17 +12,15 @@ |
// Messages sent from the renderer to the browser. |
-// Request to open a log. |
-IPC_MESSAGE_CONTROL2(WebRtcLoggingMsg_OpenLog, |
- std::string /* app_session_id */, |
- std::string /* app_url */) |
+// Notification that the log has been closed. |
+IPC_MESSAGE_CONTROL0(WebRtcLoggingMsg_LoggingStopped) |
// Messages sent from the browser to the renderer. |
-// Notification that a log could not be opened. |
-IPC_MESSAGE_CONTROL0(WebRtcLoggingMsg_OpenLogFailed) |
- |
-// Notification that a log has been opened. |
-IPC_MESSAGE_CONTROL2(WebRtcLoggingMsg_LogOpened, |
+// Tells the renderer to open the log. |
+IPC_MESSAGE_CONTROL2(WebRtcLoggingMsg_StartLogging, |
base::SharedMemoryHandle /* handle */, |
uint32 /* length */) |
+ |
+// Tells the renderer to close the log. |
+IPC_MESSAGE_CONTROL0(WebRtcLoggingMsg_StopLogging) |