/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/content/test/data/android/device_files/ |
geolocation.html | 4 <title>Geolocation</title> 11 navigator.geolocation.watchPosition(gotPos, function() { }, { });
|
/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...] |
GeolocationClientProxy.cpp | 29 #include "modules/geolocation/Geolocation.h" 30 #include "modules/geolocation/GeolocationPosition.h" 48 // We support there not being a client, provided we don't do any Geolocation. 81 void GeolocationClientProxy::requestPermission(Geolocation* geolocation) 83 m_client->requestPermission(WebGeolocationPermissionRequest(geolocation)); 86 void GeolocationClientProxy::cancelPermissionRequest(Geolocation* geolocation) 88 m_client->cancelPermissionRequest(WebGeolocationPermissionRequest(geolocation)); [all...] |
WebGeolocationPermissionRequest.cpp | 30 #include "modules/geolocation/Geolocation.h" 37 WebGeolocationPermissionRequest::WebGeolocationPermissionRequest(Geolocation* geolocation) 38 : m_private(geolocation)
|
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/ |
GeoNotifier.h | 8 #include "modules/geolocation/PositionCallback.h" 9 #include "modules/geolocation/PositionErrorCallback.h" 15 class Geolocation; 22 static GeoNotifier* create(Geolocation* geolocation, PositionCallback* positionCallback, PositionErrorCallback* positionErrorCallback, PositionOptions* options) 24 return new GeoNotifier(geolocation, positionCallback, positionErrorCallback, options); 52 GeoNotifier(Geolocation*, PositionCallback*, PositionErrorCallback*, PositionOptions*); 54 Member<Geolocation> m_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());
|
NavigatorGeolocation.h | 30 class Geolocation; 39 static Geolocation* geolocation(Navigator&); 40 Geolocation* geolocation() const; 48 mutable PersistentWillBeMember<Geolocation> m_geolocation;
|
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...] |
GeoNotifier.cpp | 6 #include "modules/geolocation/GeoNotifier.h" 8 #include "modules/geolocation/Geolocation.h" 9 #include "modules/geolocation/PositionError.h" 10 #include "modules/geolocation/PositionOptions.h" 14 GeoNotifier::GeoNotifier(Geolocation* geolocation, PositionCallback* successCallback, PositionErrorCallback* errorCallback, PositionOptions* options) 16 : m_geolocation(geolocation)
|
GeolocationController.h | 31 #include "modules/geolocation/Geolocation.h" 51 void addObserver(Geolocation*, bool enableHighAccuracy); 52 void removeObserver(Geolocation*); 54 void requestPermission(Geolocation*); 55 void cancelPermissionRequest(Geolocation*); 85 typedef PersistentHeapHashSetWillBeHeapHashSet<Member<Geolocation> > ObserversSet;
|
GeolocationController.cpp | 28 #include "modules/geolocation/GeolocationController.h" 32 #include "modules/geolocation/GeolocationClient.h" 33 #include "modules/geolocation/GeolocationError.h" 34 #include "modules/geolocation/GeolocationInspectorAgent.h" 35 #include "modules/geolocation/GeolocationPosition.h" 107 void GeolocationController::addObserver(Geolocation* observer, bool enableHighAccuracy) 124 void GeolocationController::removeObserver(Geolocation* observer) 140 void GeolocationController::requestPermission(Geolocation* geolocation) 143 m_client->requestPermission(geolocation); [all...] |
Geolocation.h | 32 #include "modules/geolocation/GeoNotifier.h" 33 #include "modules/geolocation/GeolocationWatchers.h" 34 #include "modules/geolocation/Geoposition.h" 35 #include "modules/geolocation/PositionCallback.h" 36 #include "modules/geolocation/PositionError.h" 37 #include "modules/geolocation/PositionErrorCallback.h" 38 #include "modules/geolocation/PositionOptions.h" 52 class Geolocation FINAL 53 : public GarbageCollectedFinalized<Geolocation> 58 static Geolocation* create(ExecutionContext*) [all...] |
/external/chromium_org/content/common/ |
geolocation_messages.h | 5 // IPC messages for geolocation. 46 // geolocation position. This will be replied by GeolocationMsg_PermissionSet. 49 GURL /* GURL of the frame requesting geolocation */, 53 // request to access geolocation position. 58 // The render view requests the Geolocation service to start updating. 63 GURL /* GURL of the frame requesting geolocation */, 66 // The render view requests Geolocation service to stop updating. 67 // Note that the geolocation service may continue to fetch geolocation data
|
/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/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/content/browser/geolocation/ |
geolocation_dispatcher_host.h | 13 #include "content/browser/geolocation/geolocation_provider_impl.h" 20 // GeolocationDispatcherHost is an observer for Geolocation messages. 27 // Pause or resumes geolocation. Resuming when nothing is paused is a no-op. 28 // If the web contents is paused while not currently using geolocation but 30 // geolocation updates until it is resumed. 54 // Updates the geolocation provider with the currently required update 65 // A map from the RenderFrameHosts that have requested geolocation updates to
|
empty_wifi_data_provider.cc | 5 #include "content/browser/geolocation/empty_wifi_data_provider.h" 7 #include "content/browser/geolocation/wifi_data_provider_manager.h"
|
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
|
location_provider_android.cc | 5 #include "content/browser/geolocation/location_provider_android.h" 8 #include "content/browser/geolocation/location_api_adapter_android.h"
|
/frameworks/base/core/java/android/webkit/ |
GeolocationPermissions.java | 24 * This class is used to manage permissions for the WebView's Geolocation 27 * Geolocation permissions are applied to an origin, which consists of the 29 * Geolocation API, permission must be granted for that content's origin. 31 * This class stores Geolocation permissions. An origin's permission state can 35 * When an origin attempts to use the Geolocation API, but no permission state 41 * Geolocation permissions at any time. 43 // Within WebKit, Geolocation permissions may be applied either temporarily 48 * A callback interface used by the host application to set the Geolocation 53 * Sets the Geolocation permission state for the supplied origin. 57 * Geolocation AP [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/maps_app/ |
manifest.json | 13 "permissions": ["geolocation"],
|
/external/chromium_org/chrome/browser/chromeos/geolocation/ |
simple_geolocation_provider.h | 13 #include "chrome/browser/chromeos/geolocation/simple_geolocation_request.h" 22 // This class implements Google Maps Geolocation API. 40 // Returns default geolocation service URL. 46 // Geolocation response callback. Deletes request from requests_. 56 // URL of the Google Maps Geolocation API.
|