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

Side by Side Diff: chrome/browser/net/nqe/ui_network_quality_estimator_service.h

Issue 2369673004: Wire NQE Prefs to Profile (Closed)
Patch Set: More fixups Created 4 years, 2 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
« no previous file with comments | « no previous file | chrome/browser/net/nqe/ui_network_quality_estimator_service.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 <map>
9 #include <memory>
10
8 #include "base/macros.h" 11 #include "base/macros.h"
9 #include "base/memory/weak_ptr.h" 12 #include "base/memory/weak_ptr.h"
10 #include "components/keyed_service/core/keyed_service.h" 13 #include "components/keyed_service/core/keyed_service.h"
14 #include "net/nqe/cached_network_quality.h"
11 #include "net/nqe/effective_connection_type.h" 15 #include "net/nqe/effective_connection_type.h"
16 #include "net/nqe/network_id.h"
12 #include "net/nqe/network_quality_estimator.h" 17 #include "net/nqe/network_quality_estimator.h"
13 18
19 class PrefRegistrySimple;
20 class Profile;
21
22 namespace net {
23 class NetworkQualitiesPrefsManager;
24 }
25
14 // UI service to determine the current EffectiveConnectionType. 26 // UI service to determine the current EffectiveConnectionType.
15 class UINetworkQualityEstimatorService 27 class UINetworkQualityEstimatorService
16 : public KeyedService, 28 : public KeyedService,
17 public net::NetworkQualityEstimator::NetworkQualityProvider { 29 public net::NetworkQualityEstimator::NetworkQualityProvider {
18 public: 30 public:
19 UINetworkQualityEstimatorService(); 31 explicit UINetworkQualityEstimatorService(Profile* profile);
20 ~UINetworkQualityEstimatorService() override; 32 ~UINetworkQualityEstimatorService() override;
21 33
34 // Registers the profile-specific network quality estimator prefs.
35 static void RegisterProfilePrefs(PrefRegistrySimple* registry);
36
22 // The current EffectiveConnectionType. 37 // The current EffectiveConnectionType.
23 net::EffectiveConnectionType GetEffectiveConnectionType() const override; 38 net::EffectiveConnectionType GetEffectiveConnectionType() const override;
24 39
25 // Tests can manually set EffectiveConnectionType, but browser tests should 40 // Tests can manually set EffectiveConnectionType, but browser tests should
26 // expect that the EffectiveConnectionType could change. 41 // expect that the EffectiveConnectionType could change.
27 void SetEffectiveConnectionTypeForTesting(net::EffectiveConnectionType type); 42 void SetEffectiveConnectionTypeForTesting(net::EffectiveConnectionType type);
28 43
44 // Reads the prefs from the disk, parses them into a map of NetworkIDs and
45 // CachedNetworkQualities, and returns the map.
46 std::map<net::nqe::internal::NetworkID,
47 net::nqe::internal::CachedNetworkQuality>
48 ForceReadPrefsForTesting() const;
49
29 private: 50 private:
30 class IONetworkQualityObserver; 51 class IONetworkQualityObserver;
31 52
32 // KeyedService implementation: 53 // KeyedService implementation:
33 void Shutdown() override; 54 void Shutdown() override;
34 55
35 // Called when the EffectiveConnectionType has updated to |type|. 56 // Called when the EffectiveConnectionType has updated to |type|.
36 // NetworkQualityEstimator::EffectiveConnectionType is an estimate of the 57 // NetworkQualityEstimator::EffectiveConnectionType is an estimate of the
37 // quality of the network that may differ from the actual network type 58 // quality of the network that may differ from the actual network type
38 // reported by NetworkchangeNotifier::GetConnectionType. 59 // reported by NetworkchangeNotifier::GetConnectionType.
39 void EffectiveConnectionTypeChanged(net::EffectiveConnectionType type); 60 void EffectiveConnectionTypeChanged(net::EffectiveConnectionType type);
40 61
41 // The current EffectiveConnectionType. 62 // The current EffectiveConnectionType.
42 net::EffectiveConnectionType type_; 63 net::EffectiveConnectionType type_;
43 64
44 // IO thread based observer that is owned by this service. Created on the UI 65 // IO thread based observer that is owned by this service. Created on the UI
45 // thread, but used and deleted on the IO thread. 66 // thread, but used and deleted on the IO thread.
46 IONetworkQualityObserver* io_observer_; 67 std::unique_ptr<IONetworkQualityObserver> io_observer_;
68
69 // Prefs manager that is owned by this service. Created on the UI thread, but
70 // used and deleted on the IO thread.
71 std::unique_ptr<net::NetworkQualitiesPrefsManager> prefs_manager_;
47 72
48 base::WeakPtrFactory<UINetworkQualityEstimatorService> weak_factory_; 73 base::WeakPtrFactory<UINetworkQualityEstimatorService> weak_factory_;
49 74
50 DISALLOW_COPY_AND_ASSIGN(UINetworkQualityEstimatorService); 75 DISALLOW_COPY_AND_ASSIGN(UINetworkQualityEstimatorService);
51 }; 76 };
52 77
53 #endif // CHROME_BROWSER_NET_NQE_UI_NETWORK_QUALITY_ESTIMATOR_SERVICE_H_ 78 #endif // CHROME_BROWSER_NET_NQE_UI_NETWORK_QUALITY_ESTIMATOR_SERVICE_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/net/nqe/ui_network_quality_estimator_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698