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

Side by Side Diff: content/browser/renderer_host/webrtc_logging_handler_host.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 | « no previous file | content/browser/renderer_host/webrtc_logging_handler_host.cc » ('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 #ifndef CONTENT_BROWSER_RENDERER_HOST_WEBRTC_LOGGING_HANDLER_HOST_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_WEBRTC_LOGGING_HANDLER_HOST_H_
7
8 #include "base/basictypes.h"
9 #include "base/shared_memory.h"
10 #include "content/public/browser/browser_message_filter.h"
11
12 namespace content {
13
14 // WebRtcLoggingHandlerHost handles operations regarding the WebRTC logging:
15 // opening and closing shared memory buffer that the handler in the renderer
16 // process writes to.
17 class WebRtcLoggingHandlerHost : public BrowserMessageFilter {
18 public:
19 WebRtcLoggingHandlerHost();
20
21 private:
22 // BrowserMessageFilter implementation.
23 virtual void OnChannelClosing() OVERRIDE;
24 virtual void OnDestruct() const OVERRIDE;
25 virtual bool OnMessageReceived(const IPC::Message& message,
26 bool* message_was_ok) OVERRIDE;
27
28 friend class BrowserThread;
29 friend class base::DeleteHelper<WebRtcLoggingHandlerHost>;
30
31 virtual ~WebRtcLoggingHandlerHost();
32
33 void OnOpenLog();
34
35 base::SharedMemory shared_memory_;
36
37 DISALLOW_COPY_AND_ASSIGN(WebRtcLoggingHandlerHost);
38 };
39
40 } // namespace content
41
42 #endif // CONTENT_BROWSER_RENDERER_HOST_WEBRTC_LOGGING_HANDLER_HOST_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/renderer_host/webrtc_logging_handler_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698