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

  /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/webkit/Source/WebKit/chromium/public/
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:WebKit::WebGeolocationPermissionRequest
59 WebCore::Geolocation* m_private
    [all...]
  /external/webkit/Source/WebKit/gtk/webkit/
webkitgeolocationpolicydecision.cpp 23 #include "Geolocation.h"
30 * @short_description: Liaison between WebKit and the application regarding asynchronous geolocation policy decisions
33 * geolocation-policy-decision-requested signal is emitted. The application
34 * uses it to tell the engine whether it wants to allow or deny geolocation for
42 Geolocation* geolocation; member in struct:_WebKitGeolocationPolicyDecisionPrivate
55 WebKitGeolocationPolicyDecision* webkit_geolocation_policy_decision_new(WebKitWebFrame* frame, Geolocation* geolocation)
62 priv->geolocation = geolocation;
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
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/webkit/Source/WebCore/bindings/v8/custom/
V8GeolocationCustom.cpp 29 #if ENABLE(GEOLOCATION)
32 #include "Geolocation.h"
132 INC_STATS("DOM.Geolocation.getCurrentPosition()");
151 Geolocation* geolocation = V8Geolocation::toNative(args.Holder()); local
152 geolocation->getCurrentPosition(positionCallback.release(), positionErrorCallback.release(), positionOptions.release());
158 INC_STATS("DOM.Geolocation.watchPosition()");
177 Geolocation* geolocation = V8Geolocation::toNative(args.Holder()); local
178 int watchId = geolocation->watchPosition(positionCallback.release(), positionErrorCallback.release(), positionOptions.releas (…)
    [all...]
  /external/webkit/Source/WebCore/page/
Navigator.cpp 34 #include "Geolocation.h"
167 Geolocation* Navigator::geolocation() const function in class:WebCore::Navigator
170 m_geolocation = Geolocation::create(m_frame);
  /external/webkit/Source/WebKit/android/WebCoreSupport/
GeolocationPermissions.cpp 33 #include <Geolocation.h>
267 // to the Geolocation object in all frames from the correct origin.
270 // If the page has changed, it may no longer have a Geolocation
272 Geolocation* geolocation = frame->domWindow()->navigator()->optionalGeolocation(); local
273 if (geolocation)
274 geolocation->setIsAllowed(allow);

Completed in 275 milliseconds