| 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 a2b53abb57ada0e3a15ebd86ee3c86eb3442f879..2c0d572a5060fd514b232f79d43b7d9433a9c94d 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -119,6 +119,7 @@
|
| #include "content/browser/resolve_proxy_msg_helper.h"
|
| #include "content/browser/service_worker/service_worker_context_wrapper.h"
|
| #include "content/browser/service_worker/service_worker_dispatcher_host.h"
|
| +#include "content/browser/shapedetection/face_detection_service_dispatcher.h"
|
| #include "content/browser/shared_worker/shared_worker_message_filter.h"
|
| #include "content/browser/shared_worker/worker_storage_partition.h"
|
| #include "content/browser/speech/speech_recognition_dispatcher_host.h"
|
| @@ -1200,6 +1201,12 @@ void RenderProcessHostImpl::RegisterMojoInterfaces() {
|
| channel_->AddAssociatedInterfaceForIOThread(
|
| base::Bind(&IndexedDBDispatcherHost::AddBinding, indexed_db_factory_));
|
|
|
| +#if defined(OS_MACOSX)
|
| + AddUIThreadInterface(
|
| + registry.get(),
|
| + base::Bind(&FaceDetectionServiceDispatcher::CreateMojoService));
|
| +#endif
|
| +
|
| #if defined(OS_ANDROID)
|
| AddUIThreadInterface(registry.get(),
|
| GetGlobalJavaInterfaces()
|
|
|