| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008, 2009, 2010, 2011 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008, 2009, 2010, 2011 Apple Inc. All Rights Reserved. |
| 3 * Copyright (C) 2009 Torch Mobile, Inc. | 3 * Copyright (C) 2009 Torch Mobile, Inc. |
| 4 * Copyright 2010, The Android Open Source Project | 4 * Copyright 2010, The Android Open Source Project |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions | 7 * modification, are permitted provided that the following conditions |
| 8 * are met: | 8 * are met: |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 */ | 26 */ |
| 27 | 27 |
| 28 #include "modules/geolocation/Geolocation.h" | 28 #include "modules/geolocation/Geolocation.h" |
| 29 | 29 |
| 30 #include "core/dom/Document.h" | 30 #include "core/dom/Document.h" |
| 31 #include "core/frame/Deprecation.h" | 31 #include "core/frame/Deprecation.h" |
| 32 #include "core/frame/HostsUsingFeatures.h" | 32 #include "core/frame/HostsUsingFeatures.h" |
| 33 #include "core/frame/Settings.h" | 33 #include "core/frame/Settings.h" |
| 34 #include "modules/geolocation/Coordinates.h" | 34 #include "modules/geolocation/Coordinates.h" |
| 35 #include "modules/geolocation/GeolocationError.h" | 35 #include "modules/geolocation/GeolocationError.h" |
| 36 #include "modules/permissions/PermissionUtils.h" |
| 36 #include "platform/UserGestureIndicator.h" | 37 #include "platform/UserGestureIndicator.h" |
| 37 #include "platform/mojo/MojoHelper.h" | |
| 38 #include "public/platform/InterfaceProvider.h" | 38 #include "public/platform/InterfaceProvider.h" |
| 39 #include "public/platform/Platform.h" | 39 #include "public/platform/Platform.h" |
| 40 #include "wtf/Assertions.h" | 40 #include "wtf/Assertions.h" |
| 41 #include "wtf/CurrentTime.h" | 41 #include "wtf/CurrentTime.h" |
| 42 | 42 |
| 43 namespace blink { | 43 namespace blink { |
| 44 namespace { | 44 namespace { |
| 45 | 45 |
| 46 static const char permissionDeniedErrorMessage[] = "User denied Geolocation"; | 46 static const char permissionDeniedErrorMessage[] = "User denied Geolocation"; |
| 47 static const char failedToStartServiceErrorMessage[] = | 47 static const char failedToStartServiceErrorMessage[] = |
| (...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 419 | 419 |
| 420 m_geolocationPermission = PermissionRequested; | 420 m_geolocationPermission = PermissionRequested; |
| 421 frame->interfaceProvider()->getInterface( | 421 frame->interfaceProvider()->getInterface( |
| 422 mojo::GetProxy(&m_permissionService)); | 422 mojo::GetProxy(&m_permissionService)); |
| 423 m_permissionService.set_connection_error_handler( | 423 m_permissionService.set_connection_error_handler( |
| 424 convertToBaseCallback(WTF::bind(&Geolocation::onPermissionConnectionError, | 424 convertToBaseCallback(WTF::bind(&Geolocation::onPermissionConnectionError, |
| 425 wrapWeakPersistent(this)))); | 425 wrapWeakPersistent(this)))); |
| 426 | 426 |
| 427 // Ask the embedder: it maintains the geolocation challenge policy itself. | 427 // Ask the embedder: it maintains the geolocation challenge policy itself. |
| 428 m_permissionService->RequestPermission( | 428 m_permissionService->RequestPermission( |
| 429 mojom::blink::PermissionName::GEOLOCATION, | 429 createPermissionDescriptor(mojom::blink::PermissionName::GEOLOCATION), |
| 430 getExecutionContext()->getSecurityOrigin(), | 430 getExecutionContext()->getSecurityOrigin(), |
| 431 UserGestureIndicator::processingUserGesture(), | 431 UserGestureIndicator::processingUserGesture(), |
| 432 convertToBaseCallback(WTF::bind( | 432 convertToBaseCallback(WTF::bind( |
| 433 &Geolocation::onGeolocationPermissionUpdated, wrapPersistent(this)))); | 433 &Geolocation::onGeolocationPermissionUpdated, wrapPersistent(this)))); |
| 434 } | 434 } |
| 435 | 435 |
| 436 void Geolocation::makeSuccessCallbacks() { | 436 void Geolocation::makeSuccessCallbacks() { |
| 437 DCHECK(m_lastPosition); | 437 DCHECK(m_lastPosition); |
| 438 DCHECK(isAllowed()); | 438 DCHECK(isAllowed()); |
| 439 | 439 |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 542 // be called. In that case, blink has already shut down so do nothing. | 542 // be called. In that case, blink has already shut down so do nothing. |
| 543 // | 543 // |
| 544 // TODO(sammc): Remove this once renderer shutdown is no longer graceful. | 544 // TODO(sammc): Remove this once renderer shutdown is no longer graceful. |
| 545 if (!Platform::current()) | 545 if (!Platform::current()) |
| 546 return; | 546 return; |
| 547 | 547 |
| 548 onGeolocationPermissionUpdated(mojom::blink::PermissionStatus::DENIED); | 548 onGeolocationPermissionUpdated(mojom::blink::PermissionStatus::DENIED); |
| 549 } | 549 } |
| 550 | 550 |
| 551 } // namespace blink | 551 } // namespace blink |
| OLD | NEW |