| 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 02112705cc87fb695419bd9b736a6c5f2934de67..23bc77167d8deae7c10ff73cfcd496ab71dd1004 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -73,7 +73,6 @@
|
| #include "content/browser/renderer_host/media/audio_mirroring_manager.h"
|
| #include "content/browser/renderer_host/media/audio_renderer_host.h"
|
| #include "content/browser/renderer_host/media/media_stream_dispatcher_host.h"
|
| -#include "content/browser/renderer_host/media/peer_connection_tracker_host.h"
|
| #include "content/browser/renderer_host/media/video_capture_host.h"
|
| #include "content/browser/renderer_host/memory_benchmark_message_filter.h"
|
| #include "content/browser/renderer_host/p2p/socket_dispatcher_host.h"
|
| @@ -136,6 +135,8 @@
|
| #endif
|
|
|
| #if defined(ENABLE_WEBRTC)
|
| +#include "content/browser/renderer_host/media/dtls_identity_service_host.h"
|
| +#include "content/browser/renderer_host/media/peer_connection_tracker_host.h"
|
| #include "content/browser/renderer_host/media/webrtc_logging_handler_host.h"
|
| #endif
|
|
|
| @@ -628,6 +629,8 @@ void RenderProcessHostImpl::CreateMessageFilters() {
|
| gpu_message_filter_ = new GpuMessageFilter(GetID(), widget_helper_.get());
|
| channel_->AddFilter(gpu_message_filter_);
|
| #if defined(ENABLE_WEBRTC)
|
| + dtls_identity_service_host_ = new DTLSIdentityServiceHost();
|
| + channel_->AddFilter(dtls_identity_service_host_);
|
| peer_connection_tracker_host_ = new PeerConnectionTrackerHost(GetID());
|
| channel_->AddFilter(peer_connection_tracker_host_);
|
| channel_->AddFilter(new MediaStreamDispatcherHost(GetID()));
|
|
|