/external/chromium_org/content/public/common/ |
geoposition.h | 5 // This file declares the Geoposition structure, used to represent a position 19 struct CONTENT_EXPORT Geoposition { 33 Geoposition();
|
/external/chromium_org/content/renderer/ |
geolocation_dispatcher.h | 21 struct Geoposition; 52 void OnPositionUpdated(const content::Geoposition& geoposition);
|
/external/chromium_org/content/browser/geolocation/ |
location_provider_base.cc | 15 void LocationProviderBase::NotifyCallback(const Geoposition& position) {
|
location_provider_base.h | 20 void NotifyCallback(const Geoposition& position);
|
mock_location_arbitrator.cc | 8 #include "content/public/common/geoposition.h"
|
mock_location_arbitrator.h | 14 struct Geoposition;
|
geolocation_provider_impl.cc | 36 position_.error_code != Geoposition::ERROR_CODE_NONE) { 52 const Geoposition& position) { 58 void GeolocationProviderImpl::OnLocationUpdate(const Geoposition& position) { 103 // We have no more observers, so we clear the cached geoposition so that 105 position_ = Geoposition(); 153 void GeolocationProviderImpl::NotifyClients(const Geoposition& position) { 156 position.error_code != Geoposition::ERROR_CODE_NONE);
|
mock_location_provider.cc | 36 void MockLocationProvider::HandlePositionChanged(const Geoposition& position) { 59 void MockLocationProvider::GetPosition(Geoposition* position) { 86 position_.error_code = Geoposition::ERROR_CODE_POSITION_UNAVAILABLE;
|
location_arbitrator_impl.cc | 81 position_ = Geoposition(); 127 const Geoposition& new_position) { 129 new_position.error_code != Geoposition::ERROR_CODE_NONE); 175 const Geoposition& old_position, const Geoposition& new_position,
|
network_location_request.h | 22 struct Geoposition; 34 typedef base::Callback<void(const Geoposition& /* position */,
|
network_location_provider.cc | 28 const Geoposition& position) { 58 const Geoposition* NetworkLocationProvider::PositionCache::FindPosition( 134 void NetworkLocationProvider::GetPosition(Geoposition* position) { 164 const Geoposition& position, 236 const Geoposition* cached_position =
|
/external/chromium_org/content/public/browser/ |
geolocation_provider.h | 12 struct Geoposition; 29 typedef base::Callback<void(const Geoposition&)> LocationUpdateCallback; 30 typedef base::CallbackList<void(const Geoposition&)>::Subscription 55 virtual void OverrideLocationForTesting(const Geoposition& position) = 0;
|
/external/chromium_org/chrome/browser/chromeos/timezone/ |
timezone_provider.cc | 13 #include "chrome/browser/chromeos/geolocation/geoposition.h" 30 const Geoposition& position,
|
timezone_provider.h | 24 struct Geoposition; 37 void RequestTimezone(const Geoposition& position,
|
timezone_request.cc | 16 #include "chrome/browser/chromeos/geolocation/geoposition.h" 121 const Geoposition& geoposition, 125 "%s=%f,%f", kLocationString, geoposition.latitude, geoposition.longitude); 135 if (!geoposition.timestamp.is_null()) { 137 "&%s=%ld", kTimestampString, geoposition.timestamp.ToTimeT()); 307 const Geoposition& geoposition, 312 geoposition_(geoposition), [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/ |
PositionCallback.h | 31 class Geoposition; 36 virtual void handleEvent(Geoposition*) = 0;
|
Geoposition.idl | 29 ] interface Geoposition {
|
PositionCallback.idl | 26 void handleEvent(Geoposition position);
|
Geolocation.h | 32 #include "modules/geolocation/Geoposition.h" 86 Geoposition* lastPosition(); 116 void runSuccessCallback(Geoposition*); 164 void sendPosition(GeoNotifierVector&, Geoposition*); 232 Member<Geoposition> m_lastPosition;
|
/external/chromium_org/chrome/browser/extensions/api/location/ |
location_manager.h | 16 struct Geoposition; 71 const content::Geoposition& position, 77 const content::Geoposition& position);
|
/external/chromium_org/chrome/browser/chromeos/geolocation/ |
simple_geolocation_provider.h | 50 const Geoposition& geoposition,
|
simple_geolocation_request.cc | 17 #include "chrome/browser/chromeos/geolocation/geoposition.h" 141 Geoposition* position) { 142 position->status = Geoposition::STATUS_SERVER_ERROR; 156 Geoposition* position) { 235 position->status = Geoposition::STATUS_SERVER_ERROR; 239 position->status = Geoposition::STATUS_OK; 249 Geoposition* position) { 382 (position_.status == Geoposition::STATUS_SERVER_ERROR 386 position_.status = Geoposition::STATUS_TIMEOUT;
|
simple_geolocation_request.h | 15 #include "chrome/browser/chromeos/geolocation/geoposition.h" 41 typedef base::Callback<void(const Geoposition& /* position*/, 115 Geoposition position_;
|
/external/chromium_org/chrome/test/chromedriver/ |
session.h | 18 #include "chrome/test/chromedriver/chrome/geoposition.h" 72 scoped_ptr<Geoposition> overridden_geoposition;
|
/external/chromium_org/components/autofill/content/browser/risk/ |
fingerprint.cc | 37 #include "content/public/common/geoposition.h" 209 void OnGotGeoposition(const content::Geoposition& geoposition); 243 content::Geoposition geoposition_; 349 const content::Geoposition& geoposition) { 352 geoposition_ = geoposition; 354 geoposition_.error_code != content::Geoposition::ERROR_CODE_NONE); 369 geoposition_.error_code != content::Geoposition::ERROR_CODE_NONE))) { 419 geoposition_.error_code == content::Geoposition::ERROR_CODE_NONE) [all...] |