/external/chromium/chrome/browser/geolocation/ |
geolocation_prefs.cc | 5 #include "chrome/browser/geolocation/geolocation_prefs.h" 7 #include "content/browser/geolocation/access_token_store.h" 9 namespace geolocation { namespace 11 // Fan out to all geolocation sub-components that use prefs. 14 } // namespace geolocation
|
geolocation_prefs.h | 11 namespace geolocation { namespace
|
/external/chromium_org/chrome/browser/geolocation/ |
geolocation_prefs.cc | 5 #include "chrome/browser/geolocation/geolocation_prefs.h" 7 #include "chrome/browser/geolocation/chrome_access_token_store.h" 8 #include "chrome/browser/geolocation/chrome_geolocation_permission_context_factory.h" 10 namespace geolocation { namespace 12 // Fan out to all geolocation sub-components that use prefs. 16 } // namespace geolocation
|
geolocation_prefs.h | 10 namespace geolocation { namespace
|
/external/chromium_org/third_party/WebKit/public/web/ |
WebGeolocationPermissionRequest.h | 33 class Geolocation; 39 // WebGeolocationPermissionRequest encapsulates a WebCore Geolocation object and represents 40 // a request from WebCore for permission to be determined for that Geolocation object. 41 // The underlying Geolocation object is guaranteed to be valid until the invocation of 50 WebGeolocationPermissionRequest(WebCore::Geolocation* geolocation) 51 : m_private(geolocation) 55 WebCore::Geolocation* geolocation() const { return m_private; } function in class:blink::WebGeolocationPermissionRequest 59 WebCore::Geolocation* m_private [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/ |
NavigatorGeolocation.cpp | 24 #include "modules/geolocation/NavigatorGeolocation.h" 29 #include "modules/geolocation/Geolocation.h" 57 Geolocation* NavigatorGeolocation::geolocation(Navigator* navigator) function in class:WebCore::NavigatorGeolocation 59 return NavigatorGeolocation::from(navigator)->geolocation(); 62 Geolocation* NavigatorGeolocation::geolocation() const function in class:WebCore::NavigatorGeolocation 65 m_geolocation = Geolocation::create(frame()->document());
|
Geolocation.cpp | 29 #include "modules/geolocation/Geolocation.h" 34 #include "modules/geolocation/Coordinates.h" 35 #include "modules/geolocation/GeolocationController.h" 36 #include "modules/geolocation/GeolocationError.h" 37 #include "modules/geolocation/GeolocationPosition.h" 41 static const char permissionDeniedErrorMessage[] = "User denied Geolocation"; 42 static const char failedToStartServiceErrorMessage[] = "Failed to start Geolocation service"; 43 static const char framelessDocumentErrorMessage[] = "Geolocation cannot be used in frameless documents"; 71 Geolocation::GeoNotifier::GeoNotifier(Geolocation* geolocation, PassOwnPtr<PositionCallback> successCallback, (…) 232 RefPtr<Geolocation> geolocation = adoptRef(new Geolocation(context)); local [all...] |
/external/chromium_org/third_party/WebKit/Source/web/ |
WebGeolocationPermissionRequestManager.cpp | 33 class Geolocation; 38 typedef HashMap<Geolocation*, int> GeolocationIdMap; 39 typedef HashMap<int, Geolocation*> IdGeolocationMap; 53 Geolocation* geolocation = permissionRequest.geolocation(); local 54 ASSERT(!m_private->m_geolocationIdMap.contains(geolocation)); 56 m_private->m_geolocationIdMap.add(geolocation, id); 57 m_private->m_idGeolocationMap.add(id, geolocation); 63 Geolocation* geolocation = permissionRequest.geolocation() local [all...] |
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/ |
V8GeolocationCustom.cpp | 34 #include "modules/geolocation/Geolocation.h" 147 Geolocation* geolocation = V8Geolocation::toNative(info.Holder()); local 148 geolocation->getCurrentPosition(positionCallback.release(), positionErrorCallback.release(), positionOptions.release()); 170 Geolocation* geolocation = V8Geolocation::toNative(info.Holder()); local 171 int watchId = geolocation->watchPosition(positionCallback.release(), positionErrorCallback.release(), positionOptions.release());
|