| 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 b3425b0d72e0ed354646da8c802154312fdf1f17..1ae1ace13492e9e280ab56dfab75f6ecddbbc728 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -88,6 +88,7 @@
|
| #include "content/browser/profiler_message_filter.h"
|
| #include "content/browser/push_messaging/push_messaging_message_filter.h"
|
| #include "content/browser/quota_dispatcher_host.h"
|
| +#include "content/browser/media/audio_output_impl.h"
|
| #include "content/browser/renderer_host/clipboard_message_filter.h"
|
| #include "content/browser/renderer_host/database_message_filter.h"
|
| #include "content/browser/renderer_host/file_utilities_message_filter.h"
|
| @@ -1070,6 +1071,7 @@ void RenderProcessHostImpl::RegisterMojoServices() {
|
| base::Bind(&device::BatteryMonitorImpl::Create));
|
|
|
| mojo_application_host_->service_registry()->AddService(
|
| +
|
| base::Bind(&device::VibrationManagerImpl::Create));
|
| #endif
|
|
|
| @@ -1085,6 +1087,9 @@ void RenderProcessHostImpl::RegisterMojoServices() {
|
| base::Bind(&RenderProcessHostImpl::CreateStoragePartitionService,
|
| base::Unretained(this)));
|
|
|
| + mojo_application_host_->service_registry()->AddService(
|
| + base::Bind(&AudioOutputImpl::Create, audio_renderer_host_));
|
| +
|
| #if defined(OS_ANDROID)
|
| ServiceRegistrarAndroid::RegisterProcessHostServices(
|
| mojo_application_host_->service_registry_android());
|
|
|