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

Side by Side Diff: device/geolocation/location_arbitrator_impl.h

Issue 2226143002: Gets rid of the LocationArbitrator interface, in preference for LocationProvider. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge branch 'master' into lai Created 4 years, 4 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef DEVICE_GEOLOCATION_LOCATION_ARBITRATOR_IMPL_H_ 5 #ifndef DEVICE_GEOLOCATION_LOCATION_ARBITRATOR_IMPL_H_
6 #define DEVICE_GEOLOCATION_LOCATION_ARBITRATOR_IMPL_H_ 6 #define DEVICE_GEOLOCATION_LOCATION_ARBITRATOR_IMPL_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 #include <memory>
9 #include <vector> 10 #include <vector>
10 11
11 #include "base/callback_forward.h" 12 #include "base/callback_forward.h"
12 #include "base/cancelable_callback.h" 13 #include "base/cancelable_callback.h"
13 #include "base/macros.h" 14 #include "base/macros.h"
14 #include "base/memory/scoped_vector.h" 15 #include "base/memory/scoped_vector.h"
15 #include "base/strings/string16.h" 16 #include "base/strings/string16.h"
16 #include "base/time/time.h" 17 #include "base/time/time.h"
17 #include "device/geolocation/access_token_store.h" 18 #include "device/geolocation/access_token_store.h"
18 #include "device/geolocation/geolocation_export.h" 19 #include "device/geolocation/geolocation_export.h"
19 #include "device/geolocation/geolocation_provider.h" 20 #include "device/geolocation/geolocation_provider.h"
20 #include "device/geolocation/geoposition.h" 21 #include "device/geolocation/geoposition.h"
21 #include "device/geolocation/location_arbitrator.h"
22 #include "device/geolocation/location_provider.h" 22 #include "device/geolocation/location_provider.h"
23 #include "net/url_request/url_request_context_getter.h" 23 #include "net/url_request/url_request_context_getter.h"
24 24
25 namespace net { 25 namespace net {
26 class URLRequestContextGetter; 26 class URLRequestContextGetter;
27 } 27 }
28 28
29 namespace device { 29 namespace device {
30 class AccessTokenStore; 30 class AccessTokenStore;
31 class GeolocationDelegate; 31 class GeolocationDelegate;
32 class LocationProvider; 32 class LocationProvider;
33 33
34 // This class is responsible for handling updates from multiple underlying 34 // This class is responsible for handling updates from multiple underlying
35 // providers and resolving them to a single 'best' location fix at any given 35 // providers and resolving them to a single 'best' location fix at any given
36 // moment. 36 // moment.
37 class DEVICE_GEOLOCATION_EXPORT LocationArbitratorImpl 37 class DEVICE_GEOLOCATION_EXPORT LocationArbitratorImpl
38 : public LocationArbitrator { 38 : public LocationProvider {
39 public: 39 public:
40 // Number of milliseconds newer a location provider has to be that it's worth 40 // Number of milliseconds newer a location provider has to be that it's worth
41 // switching to this location provider on the basis of it being fresher 41 // switching to this location provider on the basis of it being fresher
42 // (regardles of relative accuracy). Public for tests. 42 // (regardles of relative accuracy). Public for tests.
43 static const int64_t kFixStaleTimeoutMilliseconds; 43 static const int64_t kFixStaleTimeoutMilliseconds;
44 44
45 typedef base::Callback<void(const Geoposition&)> LocationUpdateCallback; 45 typedef base::Callback<void(const Geoposition&)> LocationUpdateCallback;
Wez 2016/08/19 01:56:31 You can kill this type, since the arbitrator will
CJ 2016/08/22 17:41:31 Done.
46 46
47 LocationArbitratorImpl(const LocationUpdateCallback& callback, 47 LocationArbitratorImpl(const LocationUpdateCallback& callback,
48 GeolocationDelegate* delegate); 48 GeolocationDelegate* delegate);
49 ~LocationArbitratorImpl() override; 49 ~LocationArbitratorImpl() override;
50 50
51 static GURL DefaultNetworkProviderURL(); 51 static GURL DefaultNetworkProviderURL();
52 bool HasPermissionBeenGrantedForTest() const;
52 53
53 // LocationArbitrator 54 // LocationProvider implementation.
54 void StartProviders(bool enable_high_accuracy) override; 55 void SetUpdateCallback(
55 void StopProviders() override; 56 const LocationProviderUpdateCallback& callback) override;
57 bool StartProvider(bool enable_high_accuracy) override;
58 void StopProvider() override;
59 const Geoposition& GetPosition() override;
56 void OnPermissionGranted() override; 60 void OnPermissionGranted() override;
57 bool HasPermissionBeenGranted() const override;
58 61
59 protected: 62 protected:
60 // These functions are useful for injection of dependencies in derived 63 // These functions are useful for injection of dependencies in derived
61 // testing classes. 64 // testing classes.
62 virtual scoped_refptr<AccessTokenStore> NewAccessTokenStore(); 65 virtual scoped_refptr<AccessTokenStore> NewAccessTokenStore();
63 virtual std::unique_ptr<LocationProvider> NewNetworkLocationProvider( 66 virtual std::unique_ptr<LocationProvider> NewNetworkLocationProvider(
64 const scoped_refptr<AccessTokenStore>& access_token_store, 67 const scoped_refptr<AccessTokenStore>& access_token_store,
65 const scoped_refptr<net::URLRequestContextGetter>& context, 68 const scoped_refptr<net::URLRequestContextGetter>& context,
66 const GURL& url, 69 const GURL& url,
67 const base::string16& access_token); 70 const base::string16& access_token);
68 virtual std::unique_ptr<LocationProvider> NewSystemLocationProvider(); 71 virtual std::unique_ptr<LocationProvider> NewSystemLocationProvider();
69 virtual base::Time GetTimeNow() const; 72 virtual base::Time GetTimeNow() const;
70 73
71 private: 74 private:
72 friend class TestingLocationArbitrator; 75 friend class TestingLocationArbitrator;
73 76
74 scoped_refptr<AccessTokenStore> GetAccessTokenStore(); 77 scoped_refptr<AccessTokenStore> GetAccessTokenStore();
75 78
76 // Provider will either be added to |providers_| or 79 // Provider will either be added to |providers_| or
77 // deleted on error (e.g. it fails to start). 80 // deleted on error (e.g. it fails to start).
78 void RegisterProvider(std::unique_ptr<LocationProvider> provider); 81 void RegisterProvider(std::unique_ptr<LocationProvider> provider);
79 82
80 void RegisterSystemProvider(); 83 void RegisterSystemProvider();
81 void OnAccessTokenStoresLoaded( 84 void OnAccessTokenStoresLoaded(
82 AccessTokenStore::AccessTokenMap access_token_map, 85 AccessTokenStore::AccessTokenMap access_token_map,
83 const scoped_refptr<net::URLRequestContextGetter>& context_getter); 86 const scoped_refptr<net::URLRequestContextGetter>& context_getter);
84 void DoStartProviders(); 87 bool DoStartProviders();
85 88
86 // Gets called when a provider has a new position. 89 // Gets called when a provider has a new position.
87 void OnLocationUpdate(const LocationProvider* provider, 90 void OnLocationUpdate(const LocationProvider* provider,
88 const Geoposition& new_position); 91 const Geoposition& new_position);
89 92
90 // Returns true if |new_position| is an improvement over |old_position|. 93 // Returns true if |new_position| is an improvement over |old_position|.
91 // Set |from_same_provider| to true if both the positions came from the same 94 // Set |from_same_provider| to true if both the positions came from the same
92 // provider. 95 // provider.
93 bool IsNewPositionBetter(const Geoposition& old_position, 96 bool IsNewPositionBetter(const Geoposition& old_position,
94 const Geoposition& new_position, 97 const Geoposition& new_position,
(...skipping 25 matching lines...) Expand all
120 DISALLOW_COPY_AND_ASSIGN(LocationArbitratorImpl); 123 DISALLOW_COPY_AND_ASSIGN(LocationArbitratorImpl);
121 }; 124 };
122 125
123 // Factory functions for the various types of location provider to abstract 126 // Factory functions for the various types of location provider to abstract
124 // over the platform-dependent implementations. 127 // over the platform-dependent implementations.
125 std::unique_ptr<LocationProvider> NewSystemLocationProvider(); 128 std::unique_ptr<LocationProvider> NewSystemLocationProvider();
126 129
127 } // namespace device 130 } // namespace device
128 131
129 #endif // DEVICE_GEOLOCATION_LOCATION_ARBITRATOR_IMPL_H_ 132 #endif // DEVICE_GEOLOCATION_LOCATION_ARBITRATOR_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698