OLD | NEW |
| (Empty) |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 // IPC messages for WebRTC logging. | |
6 // Multiply-included message file, hence no include guard. | |
7 | |
8 #include "base/shared_memory.h" | |
9 #include "ipc/ipc_message_macros.h" | |
10 | |
11 #define IPC_MESSAGE_START WebRtcLoggingMsgStart | |
12 | |
13 // Messages sent from the renderer to the browser. | |
14 | |
15 // Request to open a log. | |
16 IPC_MESSAGE_CONTROL2(WebRtcLoggingMsg_OpenLog, | |
17 std::string /* app_session_id */, | |
18 std::string /* app_url */) | |
19 | |
20 // Messages sent from the browser to the renderer. | |
21 | |
22 // Notification that a log could not be opened. | |
23 IPC_MESSAGE_CONTROL0(WebRtcLoggingMsg_OpenLogFailed) | |
24 | |
25 // Notification that a log has been opened. | |
26 IPC_MESSAGE_CONTROL2(WebRtcLoggingMsg_LogOpened, | |
27 base::SharedMemoryHandle /* handle */, | |
28 uint32 /* length */) | |
OLD | NEW |