Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(136)

Side by Side Diff: content/browser/geolocation/location_arbitrator_unittest.cc

Issue 6677096: Move a bunch of files from chrome\common to content\common. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/scoped_ptr.h" 5 #include "base/scoped_ptr.h"
6 #include "chrome/common/geoposition.h"
7 #include "content/browser/geolocation/arbitrator_dependency_factory.h" 6 #include "content/browser/geolocation/arbitrator_dependency_factory.h"
8 #include "content/browser/geolocation/fake_access_token_store.h" 7 #include "content/browser/geolocation/fake_access_token_store.h"
9 #include "content/browser/geolocation/geolocation_observer.h" 8 #include "content/browser/geolocation/geolocation_observer.h"
10 #include "content/browser/geolocation/location_arbitrator.h" 9 #include "content/browser/geolocation/location_arbitrator.h"
11 #include "content/browser/geolocation/location_provider.h" 10 #include "content/browser/geolocation/location_provider.h"
12 #include "content/browser/geolocation/mock_location_provider.h" 11 #include "content/browser/geolocation/mock_location_provider.h"
12 #include "content/common/geoposition.h"
13 #include "testing/gtest/include/gtest/gtest.h" 13 #include "testing/gtest/include/gtest/gtest.h"
14 14
15 namespace { 15 namespace {
16 16
17 class MockLocationObserver : public GeolocationObserver { 17 class MockLocationObserver : public GeolocationObserver {
18 public: 18 public:
19 void InvalidateLastPosition() { 19 void InvalidateLastPosition() {
20 last_position_.latitude = 100; 20 last_position_.latitude = 100;
21 last_position_.error_code = Geoposition::ERROR_CODE_NONE; 21 last_position_.error_code = Geoposition::ERROR_CODE_NONE;
22 ASSERT_FALSE(last_position_.IsInitialized()); 22 ASSERT_FALSE(last_position_.IsInitialized());
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 CheckLastPositionInfo(3.5657104, 139.690341, 300); 293 CheckLastPositionInfo(3.5657104, 139.690341, 300);
294 294
295 // 2 minutes later 295 // 2 minutes later
296 AdvanceTimeNow(base::TimeDelta::FromMinutes(2)); 296 AdvanceTimeNow(base::TimeDelta::FromMinutes(2));
297 // Arrive in station. Cell moves but GPS is stale. Switch to fresher cell. 297 // Arrive in station. Cell moves but GPS is stale. Switch to fresher cell.
298 SetPositionFix(cell(), 3.5658700, 139.069979, 1000); 298 SetPositionFix(cell(), 3.5658700, 139.069979, 1000);
299 CheckLastPositionInfo(3.5658700, 139.069979, 1000); 299 CheckLastPositionInfo(3.5658700, 139.069979, 1000);
300 } 300 }
301 301
302 } // namespace 302 } // namespace
OLDNEW
« no previous file with comments | « content/browser/geolocation/location_arbitrator.h ('k') | content/browser/geolocation/mock_location_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698