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

/macosx-10.10.1/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.1/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.1/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.1/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.1/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.1/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...]

Completed in 84 milliseconds