HomeSort by relevance Sort by last modified time
    Searched defs:geolocation (Results 1 - 7 of 7) sorted by null

  /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"
9 namespace geolocation { namespace
11 // Fan out to all geolocation sub-components that use prefs.
15 } // namespace geolocation
geolocation_prefs.h 10 namespace geolocation { namespace
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
NavigatorGeolocation.cpp 24 #include "modules/geolocation/NavigatorGeolocation.h"
29 #include "modules/geolocation/Geolocation.h"
55 Geolocation* NavigatorGeolocation::geolocation(Navigator& navigator) function in class:blink::NavigatorGeolocation
57 return NavigatorGeolocation::from(navigator).geolocation();
60 Geolocation* NavigatorGeolocation::geolocation() const function in class:blink::NavigatorGeolocation
63 m_geolocation = Geolocation::create(frame()->document());
Geolocation.cpp 29 #include "modules/geolocation/Geolocation.h"
32 #include "modules/geolocation/Coordinates.h"
33 #include "modules/geolocation/GeolocationController.h"
34 #include "modules/geolocation/GeolocationError.h"
35 #include "modules/geolocation/GeolocationPosition.h"
40 static const char permissionDeniedErrorMessage[] = "User denied Geolocation";
41 static const char failedToStartServiceErrorMessage[] = "Failed to start Geolocation service";
42 static const char framelessDocumentErrorMessage[] = "Geolocation cannot be used in frameless documents";
79 Geolocation* Geolocation::create(ExecutionContext* context
81 Geolocation* geolocation = new Geolocation(context); local
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebGeolocationPermissionRequest.h 34 class Geolocation;
37 // WebGeolocationPermissionRequest encapsulates a WebCore Geolocation object and represents
38 // a request from WebCore for permission to be determined for that Geolocation object.
39 // The underlying Geolocation object is guaranteed to be valid until the invocation of
49 WebGeolocationPermissionRequest(Geolocation*);
50 Geolocation* geolocation() const { return m_private.get(); } function in class:blink::WebGeolocationPermissionRequest
56 WebPrivatePtr<Geolocation> m_private;
  /external/chromium_org/third_party/WebKit/Source/web/
WebGeolocationPermissionRequestManager.cpp 29 #include "modules/geolocation/Geolocation.h"
35 typedef PersistentHeapHashMap<Member<Geolocation>, int> GeolocationIdMap;
36 typedef PersistentHeapHashMap<int, Member<Geolocation> > IdGeolocationMap;
46 Geolocation* geolocation = permissionRequest.geolocation(); local
47 ASSERT(!m_private->m_geolocationIdMap.contains(geolocation));
50 m_private->m_geolocationIdMap.add(geolocation, id);
51 m_private->m_idGeolocationMap.add(id, geolocation);
57 Geolocation* geolocation = permissionRequest.geolocation(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
OverridesSupport.js 652 var geolocation = WebInspector.OverridesSupport.GeolocationPosition.parseSetting(this.settings.geolocationOverride.get()); variable
653 if (geolocation.error)
656 GeolocationAgent.setGeolocationOverride(geolocation.latitude, geolocation.longitude, 150);

Completed in 862 milliseconds