Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(255)

Side by Side Diff: ash/system/chromeos/network/tray_vpn.h

Issue 1914093002: Refactors DockedWindowLayoutManager in terms of ash/wm/common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@nuke_aura_window
Patch Set: comment Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ash/system/chromeos/network/tray_network.cc ('k') | ash/system/chromeos/network/tray_vpn.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef ASH_SYSTEM_CHROMEOS_NETWORK_TRAY_VPN_H 5 #ifndef ASH_SYSTEM_CHROMEOS_NETWORK_TRAY_VPN_H
6 #define ASH_SYSTEM_CHROMEOS_NETWORK_TRAY_VPN_H 6 #define ASH_SYSTEM_CHROMEOS_NETWORK_TRAY_VPN_H
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "ash/system/chromeos/network/tray_network_state_observer.h" 10 #include "ash/system/chromeos/network/tray_network_state_observer.h"
(...skipping 16 matching lines...) Expand all
27 ~TrayVPN() override; 27 ~TrayVPN() override;
28 28
29 // SystemTrayItem 29 // SystemTrayItem
30 views::View* CreateTrayView(user::LoginStatus status) override; 30 views::View* CreateTrayView(user::LoginStatus status) override;
31 views::View* CreateDefaultView(user::LoginStatus status) override; 31 views::View* CreateDefaultView(user::LoginStatus status) override;
32 views::View* CreateDetailedView(user::LoginStatus status) override; 32 views::View* CreateDetailedView(user::LoginStatus status) override;
33 void DestroyTrayView() override; 33 void DestroyTrayView() override;
34 void DestroyDefaultView() override; 34 void DestroyDefaultView() override;
35 void DestroyDetailedView() override; 35 void DestroyDetailedView() override;
36 void UpdateAfterLoginStatusChange(user::LoginStatus status) override; 36 void UpdateAfterLoginStatusChange(user::LoginStatus status) override;
37 void UpdateAfterShelfAlignmentChange(ShelfAlignment alignment) override; 37 void UpdateAfterShelfAlignmentChange(wm::ShelfAlignment alignment) override;
38 38
39 // TrayNetworkStateObserver::Delegate 39 // TrayNetworkStateObserver::Delegate
40 void NetworkStateChanged() override; 40 void NetworkStateChanged() override;
41 41
42 private: 42 private:
43 tray::VpnDefaultView* default_; 43 tray::VpnDefaultView* default_;
44 tray::NetworkDetailedView* detailed_; 44 tray::NetworkDetailedView* detailed_;
45 std::unique_ptr<TrayNetworkStateObserver> network_state_observer_; 45 std::unique_ptr<TrayNetworkStateObserver> network_state_observer_;
46 46
47 DISALLOW_COPY_AND_ASSIGN(TrayVPN); 47 DISALLOW_COPY_AND_ASSIGN(TrayVPN);
48 }; 48 };
49 49
50 } // namespace ash 50 } // namespace ash
51 51
52 #endif // ASH_SYSTEM_CHROMEOS_NETWORK_TRAY_VPN_H 52 #endif // ASH_SYSTEM_CHROMEOS_NETWORK_TRAY_VPN_H
OLDNEW
« no previous file with comments | « ash/system/chromeos/network/tray_network.cc ('k') | ash/system/chromeos/network/tray_vpn.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698