HomeSort by relevance Sort by last modified time
    Searched full:geolocation (Results 51 - 75 of 299) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/webkit/Source/WebKit/chromium/src/
GeolocationClientProxy.cpp 29 #include "Geolocation.h"
49 // We support there not being a client, provided we don't do any Geolocation.
88 void GeolocationClientProxy::requestPermission(WebCore::Geolocation* geolocation)
90 m_client->requestPermission(WebGeolocationPermissionRequest(geolocation));
93 void GeolocationClientProxy::cancelPermissionRequest(WebCore::Geolocation* geolocation)
95 m_client->cancelPermissionRequest(WebGeolocationPermissionRequest(geolocation));
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
GeolocationPermissionClientQt.cpp 34 #include "Geolocation.h"
42 #if ENABLE(GEOLOCATION)
63 void GeolocationPermissionClientQt::requestGeolocationPermissionForFrame(QWebFrame* webFrame, Geolocation* listener)
68 emit page->featurePermissionRequested(webFrame, QWebPage::Geolocation);
72 void GeolocationPermissionClientQt::cancelGeolocationPermissionRequestForFrame(QWebFrame* webFrame, Geolocation* listener)
77 emit page->featurePermissionRequestCanceled(webFrame, QWebPage::Geolocation);
85 Geolocation* listener = m_pendingPermissionRequests.value(webFrame);
97 #endif // ENABLE(GEOLOCATION)
  /external/webkit/Source/WebKit/win/WebCoreSupport/
WebGeolocationClient.cpp 36 #include <WebCore/Geolocation.h>
82 void WebGeolocationClient::requestPermission(Geolocation* geolocation)
86 geolocation->setIsAllowed(false);
92 geolocation->setIsAllowed(false);
96 Frame* frame = geolocation->frame();
98 COMPtr<WebGeolocationPolicyListener> listener = WebGeolocationPolicyListener::createInstance(geolocation);
103 geolocation->setIsAllowed(false);
  /external/chromium/chrome/browser/geolocation/
geolocation_prefs.h 11 namespace geolocation { namespace
  /external/chromium/chrome/common/extensions/docs/examples/extensions/maps_app/
manifest.json 13 "permissions": ["geolocation"]
  /external/webkit/LayoutTests/fast/dom/Geolocation/
callback-to-remote-context-expected.txt 1 Tests that when a Geolocation request is made from a remote frame, callbacks are made as usual.
callback-to-remote-context2-expected.txt 1 Tests that when a Geolocation request is made from a remote frame, and the JavaScript call chain starts from that remote frame, callbacks are made as usual.
delayed-permission-denied-expected.txt 7 PASS error.message is "User denied Geolocation"
no-page-cache-expected.txt 1 Tests that pages that use Geolocation are not put in the page cache.
3 Currently, Geolocation does not work with the page cache so pages that use Geolocation are explicitly prevented from entering the cache. This test checks for accidental enabling of the page Cache for Geolocation. See https://bugs.webkit.org/show_bug.cgi?id=43956 for details.
page-reload-cancel-permission-requests-expected.txt 1 Tests that when a page is reloaded, the frame is properly detached from the Geolocation object to ensure that no permission requests are in progress.
reentrant-error-expected.txt 1 Tests that reentrant calls to Geolocation methods from the error callback are OK.
success-expected.txt 1 Tests Geolocation success callback using the mock service.
error-expected.txt 1 Tests Geolocation error callback using the mock service.
reentrant-success-expected.txt 1 Tests that reentrant calls to Geolocation methods from the success callback are OK.
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
delayed-permission-denied-for-multiple-requests.js 16 navigator.geolocation.watchPosition(function() {
23 shouldBe('error.message', '"User denied Geolocation"');
32 navigator.geolocation.getCurrentPosition(function() {
39 shouldBe('error.message', '"User denied Geolocation"');
callback-to-deleted-context.js 1 description("Tests that when a Geolocation request is made from a remote frame, and that frame's script context goes away before the Geolocation callback is made, the callback is not made. If the callback is attempted, a crash will occur.");
clear-watch-invalid-id-crash.js 10 navigator.geolocation.watchPosition(function() {});
11 navigator.geolocation.clearWatch(0);
delayed-permission-allowed-for-multiple-requests.js 15 navigator.geolocation.watchPosition(function() {
29 navigator.geolocation.getCurrentPosition(function() {
maximum-age.js 35 navigator.geolocation.getCurrentPosition(function(p) {
48 navigator.geolocation.getCurrentPosition(function(p) {
62 navigator.geolocation.getCurrentPosition(function(p) {
73 navigator.geolocation.getCurrentPosition(function(p) {
timeout-zero.js 7 navigator.geolocation.getCurrentPosition(function(p) {
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebGeolocationClient.cpp 34 #include <WebCore/Geolocation.h>
71 void WebGeolocationClient::requestPermission(Geolocation* geolocation)
73 m_page->geolocationPermissionRequestManager().startRequestForGeolocation(geolocation);
76 void WebGeolocationClient::cancelPermissionRequest(Geolocation* geolocation)
78 m_page->geolocationPermissionRequestManager().cancelRequestForGeolocation(geolocation);
  /external/webkit/Source/WebCore/page/
GeolocationController.cpp 50 void GeolocationController::addObserver(Geolocation* observer, bool enableHighAccuracy)
67 void GeolocationController::removeObserver(Geolocation* observer)
83 void GeolocationController::requestPermission(Geolocation* geolocation)
86 m_client->requestPermission(geolocation);
89 void GeolocationController::cancelPermissionRequest(Geolocation* geolocation)
92 m_client->cancelPermissionRequest(geolocation);
98 Vector<RefPtr<Geolocation> > observersVector;
106 Vector<RefPtr<Geolocation> > observersVector
    [all...]
GeolocationClient.h 31 class Geolocation;
40 // FIXME: The V2 Geolocation specification proposes that this property is
41 // renamed. See http://www.w3.org/2008/geolocation/track/issues/6
47 virtual void requestPermission(Geolocation*) = 0;
48 virtual void cancelPermissionRequest(Geolocation*) = 0;
Geolocation.h 51 class Geolocation : public RefCounted<Geolocation>
52 #if !ENABLE(CLIENT_BASED_GEOLOCATION) && ENABLE(GEOLOCATION)
57 static PassRefPtr<Geolocation> create(Frame* frame) { return adoptRef(new Geolocation(frame)); }
59 ~Geolocation();
88 Geolocation(Frame*);
94 static PassRefPtr<GeoNotifier> create(Geolocation* geolocation, PassRefPtr<PositionCallback> positionCallback, PassRefPtr<PositionErrorCallback> positionErrorCallback, PassRefPtr<PositionOptions> options) { return adoptRef(new GeoNotifier(geolocation, positionCallback, positionErrorCallback, options));
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/Geolocation/
GeolocationPermissionRequestManager.h 33 class Geolocation;
44 void startRequestForGeolocation(WebCore::Geolocation*);
45 void cancelRequestForGeolocation(WebCore::Geolocation*);
50 typedef HashMap<uint64_t, WebCore::Geolocation*> IDToGeolocationMap;
51 typedef HashMap<WebCore::Geolocation*, uint64_t> GeolocationToIDMap;

Completed in 2066 milliseconds

1 23 4 5 6 7 8 91011>>