HomeSort by relevance Sort by last modified time
    Searched refs:geoposition (Results 1 - 25 of 32) sorted by null

1 2

  /external/chromium_org/content/renderer/
geolocation_dispatcher.cc 114 const Geoposition& geoposition) {
120 if (geoposition.Validate()) {
123 geoposition.timestamp.ToDoubleT(),
124 geoposition.latitude, geoposition.longitude,
125 geoposition.accuracy,
127 geoposition.altitude > -10000.,
128 geoposition.altitude,
129 geoposition.altitude_accuracy >= 0.
    [all...]
geolocation_dispatcher.h 21 struct Geoposition;
51 void OnPositionUpdated(const content::Geoposition& geoposition);
  /external/chromium_org/chrome/test/chromedriver/chrome/
geolocation_override_manager_unittest.cc 11 #include "chrome/test/chromedriver/chrome/geoposition.h"
57 const Geoposition& geoposition) {
63 ASSERT_EQ(geoposition.latitude, latitude);
64 ASSERT_EQ(geoposition.longitude, longitude);
65 ASSERT_EQ(geoposition.accuracy, accuracy);
73 Geoposition geoposition = {1, 2, 3}; local
74 manager.OverrideGeolocation(geoposition);
77 AssertGeolocationCommand(client.commands_[0], geoposition));
92 Geoposition geoposition = {1, 2, 3}; local
110 Geoposition geoposition = {1, 2, 3}; local
    [all...]
geolocation_override_manager.cc 9 #include "chrome/test/chromedriver/chrome/geoposition.h"
21 const Geoposition& geoposition) {
22 overridden_geoposition_.reset(new Geoposition(geoposition));
geolocation_override_manager.h 20 struct Geoposition;
30 Status OverrideGeolocation(const Geoposition& geoposition);
42 scoped_ptr<Geoposition> overridden_geoposition_;
stub_web_view.h 64 virtual Status OverrideGeolocation(const Geoposition& geoposition) OVERRIDE;
web_view.h 23 struct Geoposition;
139 // Overrides normal geolocation with a given geoposition.
140 virtual Status OverrideGeolocation(const Geoposition& geoposition) = 0;
stub_web_view.cc 116 Status StubWebView::OverrideGeolocation(const Geoposition& geoposition) {
web_view_impl.h 91 virtual Status OverrideGeolocation(const Geoposition& geoposition) OVERRIDE;
web_view_impl.cc 371 Status WebViewImpl::OverrideGeolocation(const Geoposition& geoposition) {
372 return geolocation_override_manager_->OverrideGeolocation(geoposition);
  /external/chromium_org/content/browser/geolocation/
location_api_adapter_android.h 17 struct Geoposition;
64 void OnNewGeopositionInternal(const Geoposition& geoposition);
67 static void NotifyProviderNewGeoposition(const Geoposition& geoposition);
location_api_adapter_android.cc 94 const Geoposition& geoposition) {
98 GetInstance()->location_provider_->NotifyNewGeoposition(geoposition);
109 Geoposition position;
127 Geoposition position_error;
128 position_error.error_code = Geoposition::ERROR_CODE_POSITION_UNAVAILABLE;
153 const Geoposition& geoposition) {
161 geoposition));
location_arbitrator_impl_unittest.cc 10 #include "content/public/common/geoposition.h"
24 last_position_.error_code = Geoposition::ERROR_CODE_NONE;
28 void OnLocationUpdate(const Geoposition& position) {
32 Geoposition last_position_;
49 Geoposition position;
50 position.error_code = Geoposition::ERROR_CODE_NONE;
127 Geoposition geoposition = observer_->last_position_; local
128 EXPECT_TRUE(geoposition.Validate());
129 EXPECT_DOUBLE_EQ(latitude, geoposition.latitude)
    [all...]
geolocation_dispatcher_host.cc 18 #include "content/public/common/geoposition.h"
24 // Geoposition error codes for reporting in UMA.
36 // Geoposition could not be determined.
46 void RecordGeopositionErrorCode(Geoposition::ErrorCode error_code) {
49 case Geoposition::ERROR_CODE_NONE:
52 case Geoposition::ERROR_CODE_PERMISSION_DENIED:
55 case Geoposition::ERROR_CODE_POSITION_UNAVAILABLE:
58 case Geoposition::ERROR_CODE_TIMEOUT:
124 const Geoposition& geoposition) {
    [all...]
  /external/chromium_org/chrome/browser/chromeos/geolocation/
simple_geolocation_provider.h 50 const Geoposition& geoposition,
simple_geolocation_provider.cc 12 #include "chrome/browser/chromeos/geolocation/geoposition.h"
60 const Geoposition& geoposition,
65 callback.Run(geoposition, server_error, elapsed);
  /external/chromium_org/chrome/browser/chromeos/timezone/
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...]
timezone_request.h 15 #include "chrome/browser/chromeos/geolocation/geoposition.h"
52 // Takes Geoposition and sends it to a server to get local timezone information.
70 // |geoposition| is the location to query timezone for.
75 const Geoposition& geoposition,
108 Geoposition geoposition_;
  /external/chromium_org/chrome/test/chromedriver/
window_commands.cc 21 #include "chrome/test/chromedriver/chrome/geoposition.h"
860 Geoposition geoposition; local
862 !location->GetDouble("latitude", &geoposition.latitude) ||
863 !location->GetDouble("longitude", &geoposition.longitude))
866 !location->GetDouble("accuracy", &geoposition.accuracy)) {
871 geoposition.accuracy = 100;
874 Status status = web_view->OverrideGeolocation(geoposition);
876 session->overridden_geoposition.reset(new Geoposition(geoposition));
    [all...]
  /external/chromium_org/components/autofill/content/browser/risk/
fingerprint.cc 37 #include "content/public/common/geoposition.h"
210 void OnGotGeoposition(const content::Geoposition& geoposition);
244 content::Geoposition geoposition_;
350 const content::Geoposition& geoposition) {
353 geoposition_ = geoposition;
355 geoposition_.error_code != content::Geoposition::ERROR_CODE_NONE);
370 geoposition_.error_code != content::Geoposition::ERROR_CODE_NONE))) {
420 geoposition_.error_code == content::Geoposition::ERROR_CODE_NONE)
    [all...]
  /external/chromium_org/content/
content_common.target.darwin-arm.mk 63 content/public/common/geoposition.cc \
content_common.target.darwin-arm64.mk 63 content/public/common/geoposition.cc \
content_common.target.darwin-mips.mk 63 content/public/common/geoposition.cc \
content_common.target.darwin-mips64.mk 63 content/public/common/geoposition.cc \
content_common.target.darwin-x86.mk 63 content/public/common/geoposition.cc \

Completed in 1030 milliseconds

1 2