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

  /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...]
  /external/chromium_org/content/browser/geolocation/
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...]
  /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...]

Completed in 1700 milliseconds