| 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 7592d3f8f96b0942eb8fdfded0035bcf1d54c70b..e2652777825232b859fbf7b9ea05f9b47ecf1f9c 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -79,6 +79,7 @@
|
| #include "content/browser/indexed_db/indexed_db_dispatcher_host.h"
|
| #include "content/browser/loader/resource_message_filter.h"
|
| #include "content/browser/loader/resource_scheduler_filter.h"
|
| +#include "content/browser/media/audio_output_impl.h"
|
| #include "content/browser/media/capture/audio_mirroring_manager.h"
|
| #include "content/browser/media/media_internals.h"
|
| #include "content/browser/media/midi_host.h"
|
| @@ -1080,6 +1081,9 @@ void RenderProcessHostImpl::RegisterMojoServices() {
|
| base::Bind(&RenderProcessHostImpl::CreateStoragePartitionService,
|
| base::Unretained(this)));
|
|
|
| + mojo_application_host_->service_registry()->AddService(
|
| + base::Bind(&AudioOutputImpl::CreateService, audio_renderer_host_));
|
| +
|
| #if defined(OS_ANDROID)
|
| ServiceRegistrarAndroid::RegisterProcessHostServices(
|
| mojo_application_host_->service_registry_android());
|
|
|