Searched refs:geolocation (Results 1 - 15 of 15) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/Modules/geolocation/
H A DNavigatorGeolocation.idl25 [Replaceable] readonly attribute Geolocation geolocation;
H A DNavigatorGeolocation.cpp69 Geolocation* NavigatorGeolocation::geolocation(Navigator* navigator) function in class:WebCore::NavigatorGeolocation
71 return NavigatorGeolocation::from(navigator)->geolocation();
74 Geolocation* NavigatorGeolocation::geolocation() const function in class:WebCore::NavigatorGeolocation
H A DNavigatorGeolocation.h40 static Geolocation* geolocation(Navigator*);
41 Geolocation* geolocation() const;
H A DGeolocationController.cpp89 void GeolocationController::requestPermission(Geolocation* geolocation) argument
92 m_pendedPermissionRequest.add(geolocation);
97 m_client->requestPermission(geolocation);
100 void GeolocationController::cancelPermissionRequest(Geolocation* geolocation) argument
102 if (m_pendedPermissionRequest.remove(geolocation))
106 m_client->cancelPermissionRequest(geolocation);
H A DGeolocation.h90 static PassRef<GeoNotifier> create(Geolocation* geolocation, PassRefPtr<PositionCallback> positionCallback, PassRefPtr<PositionErrorCallback> positionErrorCallback, PassRefPtr<PositionOptions> options) { return adoptRef(*new GeoNotifier(geolocation, positionCallback, positionErrorCallback, options)); } argument
H A DGeolocation.cpp78 Geolocation::GeoNotifier::GeoNotifier(Geolocation* geolocation, PassRefPtr<PositionCallback> successCallback, PassRefPtr<PositionErrorCallback> errorCallback, PassRefPtr<PositionOptions> options) argument
79 : m_geolocation(geolocation)
230 auto geolocation = adoptRef(*new Geolocation(context)); local
231 geolocation.get().suspendIfNeeded();
232 return geolocation;
275 // Have them stop updating and reset geolocation permissions when the page is resumed.
725 // Ask the embedder: it maintains the geolocation challenge policy itself.
/macosx-10.10/WebKit2-7600.1.25/WebProcess/Geolocation/
H A DGeolocationPermissionRequestManager.cpp56 void GeolocationPermissionRequestManager::startRequestForGeolocation(Geolocation* geolocation) argument
58 Frame* frame = geolocation->frame();
62 geolocation->setIsAllowed(false);
68 m_geolocationToIDMap.set(geolocation, geolocationID);
69 m_idToGeolocationMap.set(geolocationID, geolocation);
79 void GeolocationPermissionRequestManager::cancelRequestForGeolocation(Geolocation* geolocation) argument
81 uint64_t geolocationID = m_geolocationToIDMap.take(geolocation);
89 Geolocation* geolocation = m_idToGeolocationMap.take(geolocationID); local
90 if (!geolocation)
92 m_geolocationToIDMap.remove(geolocation);
[all...]
/macosx-10.10/WebKit-7600.1.25/ios/WebCoreSupport/
H A DWebGeolocation.mm35 - (id)_initWithWebCoreGeolocation:(WebCoreGeolocation *)geolocation
37 ASSERT(geolocation);
41 geolocation->ref();
42 _private = reinterpret_cast<WebGeolocationPrivate*>(geolocation);
H A DWebGeolocationInternal.h36 - (id)_initWithWebCoreGeolocation:(WebCoreGeolocation *)geolocation;
/macosx-10.10/WebKit-7600.1.25/win/
H A DWebGeolocationPolicyListener.cpp36 COMPtr<WebGeolocationPolicyListener> WebGeolocationPolicyListener::createInstance(PassRefPtr<Geolocation> geolocation) argument
38 return new WebGeolocationPolicyListener(geolocation);
41 WebGeolocationPolicyListener::WebGeolocationPolicyListener(PassRefPtr<Geolocation> geolocation) argument
43 , m_geolocation(geolocation)
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebCoreSupport/
H A DWebGeolocationClient.cpp72 void WebGeolocationClient::requestPermission(Geolocation* geolocation) argument
74 m_page->geolocationPermissionRequestManager().startRequestForGeolocation(geolocation);
77 void WebGeolocationClient::cancelPermissionRequest(Geolocation* geolocation) argument
79 m_page->geolocationPermissionRequestManager().cancelRequestForGeolocation(geolocation);
/macosx-10.10/WebKit-7600.1.25/win/WebCoreSupport/
H A DWebGeolocationClient.cpp79 void WebGeolocationClient::requestPermission(Geolocation* geolocation) argument
83 geolocation->setIsAllowed(false);
89 geolocation->setIsAllowed(false);
93 Frame* frame = geolocation->frame();
95 COMPtr<WebGeolocationPolicyListener> listener = WebGeolocationPolicyListener::createInstance(geolocation);
100 geolocation->setIsAllowed(false);
/macosx-10.10/WebKit-7600.1.25/mac/WebCoreSupport/
H A DWebGeolocationClient.mm53 - (id)initWithGeolocation:(Geolocation*)geolocation;
61 - (id)initWithGeolocation:(Geolocation*)geolocation forWebView:(WebView*)webView;
70 - (id)initWithGeolocation:(Geolocation*)geolocation;
103 void WebGeolocationClient::requestPermission(Geolocation* geolocation)
109 geolocation->setIsAllowed(false);
114 Frame *frame = geolocation->frame();
117 geolocation->setIsAllowed(false);
122 WebGeolocationPolicyListener* listener = [[WebGeolocationPolicyListener alloc] initWithGeolocation:geolocation];
129 RetainPtr<WebGeolocationProviderInitializationListener> listener = adoptNS([[WebGeolocationProviderInitializationListener alloc] initWithGeolocation:geolocation]);
143 - (id)initWithGeolocation:(Geolocation*)geolocation
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/mock/
H A DGeolocationClientMock.cpp90 void GeolocationClientMock::requestPermission(Geolocation* geolocation) argument
92 m_pendingPermission.add(geolocation);
97 void GeolocationClientMock::cancelPermissionRequest(Geolocation* geolocation) argument
100 m_pendingPermission.remove(geolocation);
/macosx-10.10/WebCore-7600.1.25/WebCore.vcxproj/
H A DcopyForwardingHeaders.cmd21 xcopy /y /d "%ProjectDir%..\Modules\geolocation\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"

Completed in 201 milliseconds