| 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 3f0f768d638b2c020a9333fbb0ab07972c2e3542..8268f24db46a849a1e71572cd2fd6fd644cc08bf 100644
|
| --- a/third_party/WebKit/Source/modules/geolocation/Geolocation.cpp
|
| +++ b/third_party/WebKit/Source/modules/geolocation/Geolocation.cpp
|
| @@ -114,7 +114,7 @@ LocalFrame* Geolocation::frame() const {
|
| return document() ? document()->frame() : 0;
|
| }
|
|
|
| -void Geolocation::contextDestroyed() {
|
| +void Geolocation::contextDestroyed(ExecutionContext*) {
|
| m_permissionService.reset();
|
| cancelAllRequests();
|
| stopUpdating();
|
| @@ -123,6 +123,8 @@ void Geolocation::contextDestroyed() {
|
| m_lastPosition = nullptr;
|
| }
|
|
|
| +void Geolocation::contextDestroyed(Page*) {}
|
| +
|
| void Geolocation::recordOriginTypeAccess() const {
|
| DCHECK(frame());
|
|
|
|
|