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

Side by Side Diff: content/common/webrtc_logging_messages.h

Issue 13119009: Adding WebRTC logging filter, handler and handler host. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed typo in gypi file. Created 7 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « content/common/content_message_generator.h ('k') | content/content_browser.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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_CONTROL0(WebRtcLoggingMsg_OpenLog)
17
18 // Messages sent from the browser to the renderer.
19
20 // Notification that a log could not be opened.
21 IPC_MESSAGE_CONTROL0(WebRtcLoggingMsg_OpenLogFailed)
22
23 // Notification that a log has been opened.
24 IPC_MESSAGE_CONTROL2(WebRtcLoggingMsg_LogOpened,
25 base::SharedMemoryHandle /* handle */,
26 uint32 /* length */)
OLDNEW
« no previous file with comments | « content/common/content_message_generator.h ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698