summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/platform/network/network_state_notifier.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/platform/network/network_state_notifier.h')
-rw-r--r--chromium/third_party/blink/renderer/platform/network/network_state_notifier.h33
1 files changed, 6 insertions, 27 deletions
diff --git a/chromium/third_party/blink/renderer/platform/network/network_state_notifier.h b/chromium/third_party/blink/renderer/platform/network/network_state_notifier.h
index 7159ec45636..b291e394923 100644
--- a/chromium/third_party/blink/renderer/platform/network/network_state_notifier.h
+++ b/chromium/third_party/blink/renderer/platform/network/network_state_notifier.h
@@ -317,13 +317,6 @@ class PLATFORM_EXPORT NetworkStateNotifier {
private:
friend class NetworkStateObserverHandle;
- struct ObserverList {
- ObserverList() : iterating(false) {}
- bool iterating;
- Vector<NetworkStateObserver*> observers;
- Vector<wtf_size_t> zeroed_observers; // Indices in observers that are 0.
- };
-
// This helper scope issues required notifications when mutating the state if
// something has changed. It's only possible to mutate the state on the main
// thread. Note that ScopedNotifier must be destroyed when not holding a lock
@@ -342,14 +335,14 @@ class PLATFORM_EXPORT NetworkStateNotifier {
// The ObserverListMap is cross-thread accessed, adding/removing Observers
// running on a task runner.
- using ObserverListMap = HashMap<scoped_refptr<base::SingleThreadTaskRunner>,
- std::unique_ptr<ObserverList>>;
+ using ObserverListMap = HashMap<NetworkStateObserver*,
+ scoped_refptr<base::SingleThreadTaskRunner>>;
void NotifyObservers(ObserverListMap&, ObserverType, const NetworkState&);
- void NotifyObserversOnTaskRunner(ObserverListMap*,
- ObserverType,
- scoped_refptr<base::SingleThreadTaskRunner>,
- const NetworkState&);
+ void NotifyObserverOnTaskRunner(NetworkStateObserver*,
+ ObserverType,
+ const NetworkState&);
+ ObserverListMap& GetObserverMapFor(ObserverType);
void AddObserverToMap(ObserverListMap&,
NetworkStateObserver*,
@@ -357,20 +350,6 @@ class PLATFORM_EXPORT NetworkStateNotifier {
void RemoveObserver(ObserverType,
NetworkStateObserver*,
scoped_refptr<base::SingleThreadTaskRunner>);
- void RemoveObserverFromMap(ObserverListMap&,
- NetworkStateObserver*,
- scoped_refptr<base::SingleThreadTaskRunner>);
-
- ObserverList* LockAndFindObserverList(
- ObserverListMap&,
- scoped_refptr<base::SingleThreadTaskRunner>);
-
- // Removed observers are nulled out in the list in case the list is being
- // iterated over. Once done iterating, call this to clean up nulled
- // observers.
- void CollectZeroedObservers(ObserverListMap&,
- ObserverList*,
- scoped_refptr<base::SingleThreadTaskRunner>);
// A random number by which the RTT and downlink estimates are multiplied
// with. The returned random multiplier is a function of the hostname.