| Index: third_party/WebKit/Source/modules/geolocation/Geolocation.cpp
|
| diff --git a/third_party/WebKit/Source/modules/geolocation/Geolocation.cpp b/third_party/WebKit/Source/modules/geolocation/Geolocation.cpp
|
| index e8138a5098de9bdc2352cb2b133cc20c026e5184..88d7796178f4275fc857df3a62308029eb2ec34c 100644
|
| --- a/third_party/WebKit/Source/modules/geolocation/Geolocation.cpp
|
| +++ b/third_party/WebKit/Source/modules/geolocation/Geolocation.cpp
|
| @@ -33,8 +33,8 @@
|
| #include "core/frame/Settings.h"
|
| #include "modules/geolocation/Coordinates.h"
|
| #include "modules/geolocation/GeolocationError.h"
|
| +#include "modules/permissions/PermissionUtils.h"
|
| #include "platform/UserGestureIndicator.h"
|
| -#include "platform/mojo/MojoHelper.h"
|
| #include "public/platform/InterfaceProvider.h"
|
| #include "public/platform/Platform.h"
|
| #include "wtf/Assertions.h"
|
| @@ -432,7 +432,7 @@ void Geolocation::requestPermission() {
|
|
|
| // Ask the embedder: it maintains the geolocation challenge policy itself.
|
| m_permissionService->RequestPermission(
|
| - mojom::blink::PermissionName::GEOLOCATION,
|
| + createPermissionDescriptor(mojom::blink::PermissionName::GEOLOCATION),
|
| getExecutionContext()->getSecurityOrigin(),
|
| UserGestureIndicator::processingUserGesture(),
|
| convertToBaseCallback(WTF::bind(
|
|
|