blob: ea49f7376505316d96998e772f64dfa8913355b7 [file] [log] [blame]
// Copyright 2018 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_VPN_FEATURE_POD_CONTROLLER_H_
#define ASH_SYSTEM_NETWORK_VPN_FEATURE_POD_CONTROLLER_H_
#include "ash/system/network/tray_network_state_model.h"
#include "ash/system/unified/feature_pod_controller_base.h"
#include "base/macros.h"
#include "base/strings/string16.h"
namespace ash {
class UnifiedSystemTrayController;
// Controller of vpn feature pod button.
class VPNFeaturePodController : public FeaturePodControllerBase,
public TrayNetworkStateModel::Observer {
public:
VPNFeaturePodController(UnifiedSystemTrayController* tray_controller);
~VPNFeaturePodController() override;
// FeaturePodControllerBase:
FeaturePodButton* CreateButton() override;
void OnIconPressed() override;
SystemTrayItemUmaType GetUmaType() const override;
// TrayNetworkStateModel::Observer:
void ActiveNetworkStateChanged() override;
private:
void Update();
// Unowned.
UnifiedSystemTrayController* const tray_controller_;
FeaturePodButton* button_ = nullptr;
DISALLOW_COPY_AND_ASSIGN(VPNFeaturePodController);
};
} // namespace ash
#endif // ASH_SYSTEM_NETWORK_VPN_FEATURE_POD_CONTROLLER_H_