blob: 7beb8d42b188843039125ae7e9b0f833f6e29e82 [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_UNIFIED_VPN_DETAILED_VIEW_CONTROLLER_H_
#define ASH_SYSTEM_NETWORK_UNIFIED_VPN_DETAILED_VIEW_CONTROLLER_H_
#include "ash/system/network/tray_network_state_model.h"
#include "ash/system/unified/detailed_view_controller.h"
namespace ash {
namespace tray {
class VPNListView;
} // namespace tray
class DetailedViewDelegate;
class UnifiedSystemTrayController;
// Controller of VPN detailed view in UnifiedSystemTray.
class UnifiedVPNDetailedViewController
: public DetailedViewController,
public TrayNetworkStateModel::Observer {
public:
explicit UnifiedVPNDetailedViewController(
UnifiedSystemTrayController* tray_controller);
~UnifiedVPNDetailedViewController() override;
// DetailedViewControllerBase:
views::View* CreateView() override;
// TrayNetworkStateModel::Observer:
void ActiveNetworkStateChanged() override;
void NetworkListChanged() override;
private:
const std::unique_ptr<DetailedViewDelegate> detailed_view_delegate_;
tray::VPNListView* view_ = nullptr;
DISALLOW_COPY_AND_ASSIGN(UnifiedVPNDetailedViewController);
};
} // namespace ash
#endif // ASH_SYSTEM_NETWORK_UNIFIED_VPN_DETAILED_VIEW_CONTROLLER_H_