| Index: chrome/browser/media/webrtc_logging_handler_host.cc
|
| diff --git a/content/browser/renderer_host/media/webrtc_logging_handler_host.cc b/chrome/browser/media/webrtc_logging_handler_host.cc
|
| similarity index 88%
|
| rename from content/browser/renderer_host/media/webrtc_logging_handler_host.cc
|
| rename to chrome/browser/media/webrtc_logging_handler_host.cc
|
| index 10e2101c80590cd4d69afe0697c576a3c96b13c7..4115d2b00e60e7b3de21d7c788e69c9311472576 100644
|
| --- a/content/browser/renderer_host/media/webrtc_logging_handler_host.cc
|
| +++ b/chrome/browser/media/webrtc_logging_handler_host.cc
|
| @@ -2,13 +2,15 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "content/browser/renderer_host/media/webrtc_logging_handler_host.h"
|
| +#include "chrome/browser/media/webrtc_logging_handler_host.h"
|
|
|
| #include "base/bind.h"
|
| #include "base/logging.h"
|
| -#include "content/common/media/webrtc_logging_messages.h"
|
| +#include "chrome/common/media/webrtc_logging_messages.h"
|
|
|
| -namespace content {
|
| +using content::BrowserThread;
|
| +
|
| +namespace chrome {
|
|
|
| #if defined(OS_ANDROID)
|
| const size_t kWebRtcLogSize = 1 * 1024 * 1024; // 1 MB
|
| @@ -23,7 +25,7 @@ WebRtcLoggingHandlerHost::~WebRtcLoggingHandlerHost() {
|
| }
|
|
|
| void WebRtcLoggingHandlerHost::OnChannelClosing() {
|
| - BrowserMessageFilter::OnChannelClosing();
|
| + content::BrowserMessageFilter::OnChannelClosing();
|
| }
|
|
|
| void WebRtcLoggingHandlerHost::OnDestruct() const {
|
| @@ -65,4 +67,4 @@ void WebRtcLoggingHandlerHost::OnOpenLog(const std::string& app_session_id,
|
| Send(new WebRtcLoggingMsg_LogOpened(foreign_memory_handle, kWebRtcLogSize));
|
| }
|
|
|
| -} // namespace content
|
| +} // namespace chrome
|
|
|