Index: chrome/browser/chrome_content_browser_client.cc |
diff --git a/chrome/browser/chrome_content_browser_client.cc b/chrome/browser/chrome_content_browser_client.cc |
index 66b9dcddb0a59ddef6c937a53214c1c5d74e3dd5..51d2e01627a341c15a86160a5dd0d5a20e1da4fc 100644 |
--- a/chrome/browser/chrome_content_browser_client.cc |
+++ b/chrome/browser/chrome_content_browser_client.cc |
@@ -181,6 +181,10 @@ |
#include "chrome/browser/media_galleries/fileapi/media_file_system_mount_point_provider.h" |
#endif |
+#if defined(ENABLE_WEBRTC) |
+#include "chrome/browser/media/webrtc_logging_handler_host.h" |
+#endif |
+ |
using base::FileDescriptor; |
using content::AccessTokenStore; |
using content::BrowserChildProcessHostIterator; |
@@ -728,6 +732,9 @@ void ChromeContentBrowserClient::RenderProcessHostCreated( |
new prerender::PrerenderMessageFilter(id, profile)); |
host->GetChannel()->AddFilter(new ValidationMessageMessageFilter(id)); |
host->GetChannel()->AddFilter(new TtsMessageFilter(id, profile)); |
+#if defined(ENABLE_WEBRTC) |
+ host->GetChannel()->AddFilter(new WebRtcLoggingHandlerHost()); |
+#endif |
host->Send(new ChromeViewMsg_SetIsIncognitoProcess( |
profile->IsOffTheRecord())); |