blob: bbead0955351cd47453e1e1b72bad079b65277c7 [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_SYSTEM_NETWORK_TRAY_NETWORK_STATE_OBSERVER_H_
#define ASH_SYSTEM_NETWORK_TRAY_NETWORK_STATE_OBSERVER_H_
#include <vector>
#include "base/macros.h"
#include "base/timer/timer.h"
#include "chromeos/network/network_state_handler_observer.h"
namespace ash {
class TrayNetworkStateObserver : public chromeos::NetworkStateHandlerObserver {
public:
class Delegate {
public:
// Called when any interesting network changes occur. The frequency of this
// event is limited to kUpdateFrequencyMs.
virtual void NetworkStateChanged(bool notify_a11y) = 0;
protected:
virtual ~Delegate() {}
};
explicit TrayNetworkStateObserver(Delegate* delegate);
~TrayNetworkStateObserver() override;
// NetworkStateHandlerObserver
void NetworkListChanged() override;
void DeviceListChanged() override;
void ActiveNetworksChanged(const std::vector<const chromeos::NetworkState*>&
active_networks) override;
void NetworkPropertiesUpdated(const chromeos::NetworkState* network) override;
void DevicePropertiesUpdated(const chromeos::DeviceState* device) override;
private:
void SignalUpdate(bool notify_a11y);
void SendNetworkStateChanged(bool notify_a11y);
// Unowned Delegate pointer (must outlive this instance).
Delegate* delegate_;
// Frequency at which to push NetworkStateChanged updates. This avoids
// unnecessarily frequent UI updates (which can be expensive). We set this
// to 0 for tests to eliminate timing variance.
int update_frequency_;
// Timer used to limit the frequency of NetworkStateChanged updates.
base::OneShotTimer timer_;
// The cached states of whether Wi-Fi and Mobile are enabled. The tray
// includes expanding network lists of these types, so these cached values
// are used to determine when to prioritize updating the tray when they
// change.
bool wifi_enabled_ = false;
bool mobile_enabled_ = false;
DISALLOW_COPY_AND_ASSIGN(TrayNetworkStateObserver);
};
} // namespace ash
#endif // ASH_SYSTEM_NETWORK_TRAY_NETWORK_STATE_OBSERVER_H_