Home | History | Annotate | Download | only in Geolocation

Lines Matching full:geolocation

34 #include <WebCore/Geolocation.h>
52 void GeolocationPermissionRequestManager::startRequestForGeolocation(Geolocation* geolocation)
56 m_geolocationToIDMap.set(geolocation, geolocationID);
57 m_idToGeolocationMap.set(geolocationID, geolocation);
60 Frame* frame = geolocation->frame();
68 void GeolocationPermissionRequestManager::cancelRequestForGeolocation(Geolocation* geolocation)
70 GeolocationToIDMap::iterator it = m_geolocationToIDMap.find(geolocation);
84 Geolocation* geolocation = it->second;
85 geolocation->setIsAllowed(allowed);
88 m_geolocationToIDMap.remove(geolocation);