| Index: content/browser/frame_host/render_frame_host_impl.cc
|
| diff --git a/content/browser/frame_host/render_frame_host_impl.cc b/content/browser/frame_host/render_frame_host_impl.cc
|
| index 360aeb354eb03cbb657e73af9a27dc9a21335866..0a8b8aaf93de61d6d6c0f1b25616e2204c7ded6f 100644
|
| --- a/content/browser/frame_host/render_frame_host_impl.cc
|
| +++ b/content/browser/frame_host/render_frame_host_impl.cc
|
| @@ -43,6 +43,7 @@
|
| #include "content/browser/loader/resource_dispatcher_host_impl.h"
|
| #include "content/browser/media/media_interface_proxy.h"
|
| #include "content/browser/media/session/media_session_service_impl.h"
|
| +#include "content/browser/net/reporting_service_proxy.h"
|
| #include "content/browser/permissions/permission_service_context.h"
|
| #include "content/browser/permissions/permission_service_impl.h"
|
| #include "content/browser/presentation/presentation_service_impl.h"
|
| @@ -72,6 +73,7 @@
|
| #include "content/common/input_messages.h"
|
| #include "content/common/inter_process_time_ticks_converter.h"
|
| #include "content/common/navigation_params.h"
|
| +#include "content/common/net/reporting.mojom.h"
|
| #include "content/common/render_message_filter.mojom.h"
|
| #include "content/common/renderer.mojom.h"
|
| #include "content/common/site_isolation_policy.h"
|
| @@ -2802,6 +2804,9 @@ void RenderFrameHostImpl::RegisterMojoInterfaces() {
|
| GetInterfaceRegistry()->AddInterface(base::Bind(
|
| &KeyboardLockServiceImpl::CreateMojoService));
|
|
|
| + GetInterfaceRegistry()->AddInterface<mojom::ReportingServiceProxy>(base::Bind(
|
| + &CreateReportingServiceProxy, base::RetainedRef(site_instance_)));
|
| +
|
| GetContentClient()->browser()->ExposeInterfacesToFrame(GetInterfaceRegistry(),
|
| this);
|
| }
|
|
|