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 1f24f20d221a8f5a7bfdd708dba304f70ae7d6cb..4452fa00d28cbf780ba177966fcc0b8fef46699c 100644 |
--- a/content/browser/renderer_host/render_process_host_impl.cc |
+++ b/content/browser/renderer_host/render_process_host_impl.cc |
@@ -73,6 +73,7 @@ |
#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/midi_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" |
@@ -615,6 +616,7 @@ void RenderProcessHostImpl::CreateMessageFilters() { |
channel_->AddFilter(new AudioRendererHost( |
GetID(), audio_manager, BrowserMainLoop::GetAudioMirroringManager(), |
media_internals, media_stream_manager)); |
+ channel_->AddFilter(new MIDIHost(BrowserMainLoop::GetMIDIManager())); |
channel_->AddFilter(new VideoCaptureHost()); |
channel_->AddFilter(new AppCacheDispatcherHost( |
storage_partition_impl_->GetAppCacheService(), |