| Index: content/browser/renderer_host/webrtc_logging_handler_host.h
|
| diff --git a/content/browser/renderer_host/webrtc_logging_handler_host.h b/content/browser/renderer_host/webrtc_logging_handler_host.h
|
| index 3b4292cfc53ba90f35265b32f284e1cc809ef4bd..38e7e00c2d1b584e840378a8ffa57d8f1f8d7c27 100644
|
| --- a/content/browser/renderer_host/webrtc_logging_handler_host.h
|
| +++ b/content/browser/renderer_host/webrtc_logging_handler_host.h
|
| @@ -19,6 +19,8 @@ class WebRtcLoggingHandlerHost : public BrowserMessageFilter {
|
| WebRtcLoggingHandlerHost();
|
|
|
| private:
|
| + virtual ~WebRtcLoggingHandlerHost();
|
| +
|
| // BrowserMessageFilter implementation.
|
| virtual void OnChannelClosing() OVERRIDE;
|
| virtual void OnDestruct() const OVERRIDE;
|
| @@ -28,11 +30,12 @@ class WebRtcLoggingHandlerHost : public BrowserMessageFilter {
|
| friend class BrowserThread;
|
| friend class base::DeleteHelper<WebRtcLoggingHandlerHost>;
|
|
|
| - virtual ~WebRtcLoggingHandlerHost();
|
| -
|
| void OnOpenLog();
|
|
|
| - base::SharedMemory shared_memory_;
|
| + bool IsUploadingEnabled();
|
| + void UploadLog();
|
| +
|
| + base::SharedMemory* shared_memory_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(WebRtcLoggingHandlerHost);
|
| };
|
|
|