blob: c6b1ab147ea6a7102bcc80e48c2b0785035a503a [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_observer.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 TrayNetworkStateObserver {
public:
VPNFeaturePodController(UnifiedSystemTrayController* tray_controller);
~VPNFeaturePodController() override;
// FeaturePodControllerBase:
FeaturePodButton* CreateButton() override;
void OnIconPressed() override;
SystemTrayItemUmaType GetUmaType() const override;
// TrayNetworkStateObserver:
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_