Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_MEDIA_WEBRTC_LOGGING_HANDLER_HOST_H_ | 5 #ifndef CHROME_BROWSER_MEDIA_WEBRTC_LOGGING_HANDLER_HOST_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_MEDIA_WEBRTC_LOGGING_HANDLER_HOST_H_ | 6 #define CHROME_BROWSER_MEDIA_WEBRTC_LOGGING_HANDLER_HOST_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/shared_memory.h" | 9 #include "base/shared_memory.h" |
| 10 #include "content/public/browser/browser_message_filter.h" | 10 #include "content/public/browser/browser_message_filter.h" |
| 11 | 11 |
| 12 namespace content { | 12 namespace chrome { |
|
sky
2013/05/22 16:19:32
note: its fine to use the chrome namespace here bu
Henrik Grunell
2013/05/23 12:50:11
OK.
| |
| 13 | 13 |
| 14 // WebRtcLoggingHandlerHost handles operations regarding the WebRTC logging: | 14 // WebRtcLoggingHandlerHost handles operations regarding the WebRTC logging: |
| 15 // opening and closing shared memory buffer that the handler in the renderer | 15 // opening and closing shared memory buffer that the handler in the renderer |
| 16 // process writes to. | 16 // process writes to. |
| 17 class WebRtcLoggingHandlerHost : public BrowserMessageFilter { | 17 class WebRtcLoggingHandlerHost : public content::BrowserMessageFilter { |
| 18 public: | 18 public: |
| 19 WebRtcLoggingHandlerHost(); | 19 WebRtcLoggingHandlerHost(); |
| 20 | 20 |
| 21 private: | 21 private: |
| 22 // BrowserMessageFilter implementation. | 22 // BrowserMessageFilter implementation. |
| 23 virtual void OnChannelClosing() OVERRIDE; | 23 virtual void OnChannelClosing() OVERRIDE; |
| 24 virtual void OnDestruct() const OVERRIDE; | 24 virtual void OnDestruct() const OVERRIDE; |
| 25 virtual bool OnMessageReceived(const IPC::Message& message, | 25 virtual bool OnMessageReceived(const IPC::Message& message, |
| 26 bool* message_was_ok) OVERRIDE; | 26 bool* message_was_ok) OVERRIDE; |
| 27 | 27 |
| 28 friend class BrowserThread; | 28 friend class content::BrowserThread; |
| 29 friend class base::DeleteHelper<WebRtcLoggingHandlerHost>; | 29 friend class base::DeleteHelper<WebRtcLoggingHandlerHost>; |
| 30 | 30 |
| 31 virtual ~WebRtcLoggingHandlerHost(); | 31 virtual ~WebRtcLoggingHandlerHost(); |
| 32 | 32 |
| 33 void OnOpenLog(); | 33 void OnOpenLog(); |
| 34 | 34 |
| 35 base::SharedMemory shared_memory_; | 35 base::SharedMemory shared_memory_; |
| 36 | 36 |
| 37 DISALLOW_COPY_AND_ASSIGN(WebRtcLoggingHandlerHost); | 37 DISALLOW_COPY_AND_ASSIGN(WebRtcLoggingHandlerHost); |
| 38 }; | 38 }; |
| 39 | 39 |
| 40 } // namespace content | 40 } // namespace chrome |
| 41 | 41 |
| 42 #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_WEBRTC_LOGGING_HANDLER_HOST_H_ | 42 #endif // CHROME_BROWSER_MEDIA_WEBRTC_LOGGING_HANDLER_HOST_H_ |
| OLD | NEW |