| 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 70c236e69898b9bf4e68574bf51f16aaf2401358..0e475e407e29a1877ea93b942f8eb8bc44a0f4df 100644
|
| --- a/content/browser/frame_host/render_frame_host_impl.cc
|
| +++ b/content/browser/frame_host/render_frame_host_impl.cc
|
| @@ -98,7 +98,8 @@
|
| #include "device/geolocation/geolocation_service_context.h"
|
| #include "device/vibration/vibration_manager_impl.h"
|
| #include "device/vr/features.h"
|
| -#include "device/wake_lock/wake_lock_service_context.h"
|
| +#include "device/wake_lock/public/interfaces/wake_lock_context.mojom.h"
|
| +#include "device/wake_lock/public/interfaces/wake_lock_service.mojom.h"
|
| #include "media/base/media_switches.h"
|
| #include "media/media_features.h"
|
| #include "media/mojo/interfaces/media_service.mojom.h"
|
| @@ -2327,14 +2328,14 @@ void RenderFrameHostImpl::RegisterMojoInterfaces() {
|
| base::Unretained(geolocation_service_context)));
|
| }
|
|
|
| - device::WakeLockServiceContext* wake_lock_service_context =
|
| + device::mojom::WakeLockContext* wake_lock_service_context =
|
| delegate_ ? delegate_->GetWakeLockServiceContext() : nullptr;
|
| if (wake_lock_service_context) {
|
| // WakeLockServiceContext is owned by WebContentsImpl so it will outlive
|
| // this RenderFrameHostImpl, hence a raw pointer can be bound to service
|
| // factory callback.
|
| GetInterfaceRegistry()->AddInterface<device::mojom::WakeLockService>(
|
| - base::Bind(&device::WakeLockServiceContext::CreateService,
|
| + base::Bind(&device::mojom::WakeLockContext::GetWakeLock,
|
| base::Unretained(wake_lock_service_context)));
|
| }
|
|
|
|
|