OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 CHROME_BROWSER_NET_NQE_UI_NETWORK_QUALITY_ESTIMATOR_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_NET_NQE_UI_NETWORK_QUALITY_ESTIMATOR_SERVICE_H_ |
6 #define CHROME_BROWSER_NET_NQE_UI_NETWORK_QUALITY_ESTIMATOR_SERVICE_H_ | 6 #define CHROME_BROWSER_NET_NQE_UI_NETWORK_QUALITY_ESTIMATOR_SERVICE_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
| 10 #include "base/values.h" |
10 #include "components/keyed_service/core/keyed_service.h" | 11 #include "components/keyed_service/core/keyed_service.h" |
| 12 #include "net/nqe/cached_network_quality.h" |
11 #include "net/nqe/effective_connection_type.h" | 13 #include "net/nqe/effective_connection_type.h" |
| 14 #include "net/nqe/network_id.h" |
12 #include "net/nqe/network_quality_estimator.h" | 15 #include "net/nqe/network_quality_estimator.h" |
13 | 16 |
| 17 class PrefRegistrySimple; |
| 18 class Profile; |
| 19 |
| 20 namespace net { |
| 21 class NetworkQualitiesPrefsManager; |
| 22 } |
| 23 |
14 // UI service to determine the current EffectiveConnectionType. | 24 // UI service to determine the current EffectiveConnectionType. |
15 class UINetworkQualityEstimatorService | 25 class UINetworkQualityEstimatorService |
16 : public KeyedService, | 26 : public KeyedService, |
17 public net::NetworkQualityEstimator::NetworkQualityProvider { | 27 public net::NetworkQualityEstimator::NetworkQualityProvider { |
18 public: | 28 public: |
19 UINetworkQualityEstimatorService(); | 29 explicit UINetworkQualityEstimatorService(Profile* profile); |
20 ~UINetworkQualityEstimatorService() override; | 30 ~UINetworkQualityEstimatorService() override; |
21 | 31 |
| 32 // Registers the profile-specific network quality estimator prefs. |
| 33 static void RegisterProfilePrefs(PrefRegistrySimple* registry); |
| 34 |
22 // The current EffectiveConnectionType. | 35 // The current EffectiveConnectionType. |
23 net::EffectiveConnectionType GetEffectiveConnectionType() const override; | 36 net::EffectiveConnectionType GetEffectiveConnectionType() const override; |
24 | 37 |
25 // Tests can manually set EffectiveConnectionType, but browser tests should | 38 // Tests can manually set EffectiveConnectionType, but browser tests should |
26 // expect that the EffectiveConnectionType could change. | 39 // expect that the EffectiveConnectionType could change. |
27 void SetEffectiveConnectionTypeForTesting(net::EffectiveConnectionType type); | 40 void SetEffectiveConnectionTypeForTesting(net::EffectiveConnectionType type); |
28 | 41 |
| 42 // Reads the prefs from the disk, parses them into a map of NetworkIDs and |
| 43 // CachedNetworkQualities, and returns the map. |
| 44 std::map<net::nqe::internal::NetworkID, |
| 45 net::nqe::internal::CachedNetworkQuality> |
| 46 ForceReadPrefsForTesting() const; |
| 47 |
29 private: | 48 private: |
30 class IONetworkQualityObserver; | 49 class IONetworkQualityObserver; |
31 | 50 |
32 // KeyedService implementation: | 51 // KeyedService implementation: |
33 void Shutdown() override; | 52 void Shutdown() override; |
34 | 53 |
35 // Called when the EffectiveConnectionType has updated to |type|. | 54 // Called when the EffectiveConnectionType has updated to |type|. |
36 // NetworkQualityEstimator::EffectiveConnectionType is an estimate of the | 55 // NetworkQualityEstimator::EffectiveConnectionType is an estimate of the |
37 // quality of the network that may differ from the actual network type | 56 // quality of the network that may differ from the actual network type |
38 // reported by NetworkchangeNotifier::GetConnectionType. | 57 // reported by NetworkchangeNotifier::GetConnectionType. |
39 void EffectiveConnectionTypeChanged(net::EffectiveConnectionType type); | 58 void EffectiveConnectionTypeChanged(net::EffectiveConnectionType type); |
40 | 59 |
41 // The current EffectiveConnectionType. | 60 // The current EffectiveConnectionType. |
42 net::EffectiveConnectionType type_; | 61 net::EffectiveConnectionType type_; |
43 | 62 |
44 // IO thread based observer that is owned by this service. Created on the UI | 63 // IO thread based observer that is owned by this service. Created on the UI |
45 // thread, but used and deleted on the IO thread. | 64 // thread, but used and deleted on the IO thread. |
46 IONetworkQualityObserver* io_observer_; | 65 IONetworkQualityObserver* io_observer_; |
47 | 66 |
| 67 // Prefs manager that is owned by this service. Created on the UI thread, but |
| 68 // used and deleted on the IO thread. |
| 69 net::NetworkQualitiesPrefsManager* prefs_manager_; |
| 70 |
48 base::WeakPtrFactory<UINetworkQualityEstimatorService> weak_factory_; | 71 base::WeakPtrFactory<UINetworkQualityEstimatorService> weak_factory_; |
49 | 72 |
50 DISALLOW_COPY_AND_ASSIGN(UINetworkQualityEstimatorService); | 73 DISALLOW_COPY_AND_ASSIGN(UINetworkQualityEstimatorService); |
51 }; | 74 }; |
52 | 75 |
53 #endif // CHROME_BROWSER_NET_NQE_UI_NETWORK_QUALITY_ESTIMATOR_SERVICE_H_ | 76 #endif // CHROME_BROWSER_NET_NQE_UI_NETWORK_QUALITY_ESTIMATOR_SERVICE_H_ |
OLD | NEW |