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

Unified Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 14329020: Implementing uploading of a WebRTC diagnostic log. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Code review, added url and app session id, rebase Created 7 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/renderer_host/render_process_host_impl.cc
diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc
index 341d8782146f55dbbb2e97daac6c7a09ff0ab140..c6f72c14ffa6fe2bf6ee34b615c8c6dfb3e81152 100644
--- a/content/browser/renderer_host/render_process_host_impl.cc
+++ b/content/browser/renderer_host/render_process_host_impl.cc
@@ -695,7 +695,7 @@ void RenderProcessHostImpl::CreateMessageFilters() {
channel_->AddFilter(new HistogramMessageFilter());
channel_->AddFilter(new HyphenatorMessageFilter(this));
#if defined(ENABLE_WEBRTC)
- channel_->AddFilter(new WebRtcLoggingHandlerHost());
+ channel_->AddFilter(new WebRtcLoggingHandlerHost(this));
#endif
}

Powered by Google App Engine
This is Rietveld 408576698