| 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 375ca3575aca7b41a0f3f241fa8d3335d2617a9b..6dd20024bb5897bcbeb5230112326a549d86707c 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"
|
| @@ -1079,6 +1080,7 @@ void RenderProcessHostImpl::RegisterMojoServices() {
|
| base::Bind(&device::BatteryMonitorImpl::Create));
|
|
|
| mojo_application_host_->service_registry()->AddService(
|
| +
|
| base::Bind(&device::VibrationManagerImpl::Create));
|
| #endif
|
|
|
| @@ -1099,6 +1101,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());
|
|
|