| 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 d68d748729d9a8a7852dc418c9e72f463785e4d0..443646ce6dd25c646e5356610cae188d129af356 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -61,6 +61,7 @@
|
| #include "content/browser/dom_storage/dom_storage_message_filter.h"
|
| #include "content/browser/fileapi/chrome_blob_storage_context.h"
|
| #include "content/browser/fileapi/fileapi_message_filter.h"
|
| +#include "content/browser/font_access/font_access_service_impl.h"
|
| #include "content/browser/frame_host/render_frame_message_filter.h"
|
| #include "content/browser/geofencing/geofencing_dispatcher_host.h"
|
| #include "content/browser/gpu/browser_gpu_memory_buffer_manager.h"
|
| @@ -1046,6 +1047,9 @@ void RenderProcessHostImpl::RegisterMojoServices() {
|
| #endif
|
|
|
| mojo_application_host_->service_registry()->AddService(
|
| + base::Bind(&FontAccessServiceImpl::Create));
|
| +
|
| + mojo_application_host_->service_registry()->AddService(
|
| base::Bind(&PermissionServiceContext::CreateService,
|
| base::Unretained(permission_service_context_.get())));
|
|
|
|
|