HomeSort by relevance Sort by last modified time
    Searched full:geolocation (Results 1 - 25 of 329) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/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/content/test/data/android/device_files/
geolocation.html 4 <title>Geolocation</title>
11 navigator.geolocation.watchPosition(gotPos, function() { }, { });
  /external/chromium/chrome/browser/extensions/
extension_geolocation_apitest.cc 6 #include "content/browser/geolocation/location_arbitrator.h"
7 #include "content/browser/geolocation/mock_location_provider.h"
8 #include "content/browser/geolocation/arbitrator_dependency_factories_for_test.h"
36 // Test that geolocation cannot be accessed from extension without permission.
37 ASSERT_TRUE(RunExtensionTest("geolocation/no_permission")) << message_;
41 // Test that geolocation can be accessed from extension with permission.
42 ASSERT_TRUE(RunExtensionTest("geolocation/has_permission")) << message_;
  /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...]
GeolocationClientProxy.cpp 32 #include "modules/geolocation/Geolocation.h"
33 #include "modules/geolocation/GeolocationPosition.h"
48 // We support there not being a client, provided we don't do any Geolocation.
87 void GeolocationClientProxy::requestPermission(WebCore::Geolocation* geolocation)
89 m_client->requestPermission(WebGeolocationPermissionRequest(geolocation));
92 void GeolocationClientProxy::cancelPermissionRequest(WebCore::Geolocation* geolocation)
94 m_client->cancelPermissionRequest(WebGeolocationPermissionRequest(geolocation));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/
DEPS 15 "!modules/geolocation/GeolocationClient.h",
16 "!modules/geolocation/GeolocationController.h",
17 "!modules/geolocation/GeolocationError.h",
18 "!modules/geolocation/GeolocationPosition.h",
  /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/content/common/
geolocation_messages.h 5 // IPC messages for geolocation.
45 // permission to access geolocation position.
50 GURL /* GURL of the frame requesting geolocation */)
53 // previous permission request to access geolocation position.
59 // The |render_view_id| requests Geolocation service to start updating.
65 GURL /* GURL of the frame requesting geolocation */,
68 // The |render_view_id| requests Geolocation service to stop updating.
69 // Note that the geolocation service may continue to fetch geolocation data
  /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());
NavigatorGeolocation.h 29 class Geolocation;
37 static Geolocation* geolocation(Navigator*);
38 Geolocation* geolocation() const;
44 mutable RefPtr<Geolocation> m_geolocation;
GeolocationController.cpp 27 #include "modules/geolocation/GeolocationController.h"
30 #include "modules/geolocation/GeolocationClient.h"
31 #include "modules/geolocation/GeolocationError.h"
32 #include "modules/geolocation/GeolocationPosition.h"
72 void GeolocationController::addObserver(Geolocation* observer, bool enableHighAccuracy)
89 void GeolocationController::removeObserver(Geolocation* observer)
105 void GeolocationController::requestPermission(Geolocation* geolocation)
108 m_client->requestPermission(geolocation);
111 void GeolocationController::cancelPermissionRequest(Geolocation* geolocation
    [all...]
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...]
NavigatorGeolocation.idl 21 [RuntimeEnabled=Geolocation] readonly attribute Geolocation geolocation;
  /external/chromium_org/chrome/browser/extensions/
extension_geolocation_apitest.cc 22 // Test that geolocation cannot be accessed from extension without permission.
23 ASSERT_TRUE(RunExtensionTest("geolocation/no_permission")) << message_;
29 // Test that geolocation can be accessed from extension with permission.
30 ASSERT_TRUE(RunExtensionTest("geolocation/has_permission")) << message_;
  /external/chromium_org/chrome/common/extensions/docs/templates/private/permissions/
geolocation.html 1 Allows the extension or app to use the proposed HTML5 <a href="http://dev.w3.org/geo/api/spec-source.html">geolocation API</a> without prompting the user for permission.
  /external/chromium_org/content/browser/geolocation/
geolocation_dispatcher_host.h 14 // GeolocationDispatcherHost is a browser filter for Geolocation messages.
22 // Pause or resumes geolocation for the given |render_view_id|. Should
24 // If a renderer is paused while not currently using geolocation but
26 // not get geolocation updates until it is resumed.
location_api_adapter_android.h 23 // GeolocationProvider runs in a Geolocation Thread and fetches geolocation data
28 // to the Geolocation thread.
34 // Called on the Geolocation thread.
37 // Called on the Geolocation thread.
66 /// Called on the Geolocation thread.
73 // Guards against the following member which is accessed on Geolocation
  /frameworks/base/core/java/android/webkit/
GeolocationPermissions.java 22 * This class is used to manage permissions for the WebView's Geolocation
25 * Geolocation permissions are applied to an origin, which consists of the
27 * Geolocation API, permission must be granted for that content's origin.
29 * This class stores Geolocation permissions. An origin's permission state can
33 * When an origin attempts to use the Geolocation API, but no permission state
39 * Geolocation permissions at any time.
41 // Within WebKit, Geolocation permissions may be applied either temporarily
46 * A callback interface used by the host application to set the Geolocation
51 * Sets the Geolocation permission state for the supplied origin.
55 * Geolocation AP
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/maps_app/
manifest.json 13 "permissions": ["geolocation"]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/maps_app/
manifest.json 13 "permissions": ["geolocation"],
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
OWNERS 5 # Geolocation API related
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
OWNERS 5 # Geolocation API related

Completed in 576 milliseconds

1 2 3 4 5 6 7 8 91011>>