OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_VPN_LIST_VIEW_H_ | 5 #ifndef ASH_COMMON_SYSTEM_CHROMEOS_NETWORK_VPN_LIST_VIEW_H_ |
6 #define ASH_SYSTEM_CHROMEOS_NETWORK_VPN_LIST_VIEW_H_ | 6 #define ASH_COMMON_SYSTEM_CHROMEOS_NETWORK_VPN_LIST_VIEW_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 | 10 |
| 11 #include "ash/common/system/chromeos/network/vpn_delegate.h" |
11 #include "ash/common/system/tray/view_click_listener.h" | 12 #include "ash/common/system/tray/view_click_listener.h" |
12 #include "ash/system/chromeos/network/vpn_delegate.h" | |
13 #include "base/macros.h" | 13 #include "base/macros.h" |
14 #include "chromeos/network/network_state_handler.h" | 14 #include "chromeos/network/network_state_handler.h" |
15 #include "ui/chromeos/network/network_list_view_base.h" | 15 #include "ui/chromeos/network/network_list_view_base.h" |
16 | 16 |
17 namespace chromeos { | 17 namespace chromeos { |
18 class NetworkState; | 18 class NetworkState; |
19 } | 19 } |
20 | 20 |
21 namespace ui { | 21 namespace ui { |
22 class NetworkListDelegate; | 22 class NetworkListDelegate; |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 | 85 |
86 // Whether the list is currently empty (i.e., the next entry added will become | 86 // Whether the list is currently empty (i.e., the next entry added will become |
87 // the topmost entry). | 87 // the topmost entry). |
88 bool list_empty_ = true; | 88 bool list_empty_ = true; |
89 | 89 |
90 DISALLOW_COPY_AND_ASSIGN(VPNListView); | 90 DISALLOW_COPY_AND_ASSIGN(VPNListView); |
91 }; | 91 }; |
92 | 92 |
93 } // namespace ash | 93 } // namespace ash |
94 | 94 |
95 #endif // ASH_SYSTEM_CHROMEOS_NETWORK_VPN_LIST_VIEW_H_ | 95 #endif // ASH_COMMON_SYSTEM_CHROMEOS_NETWORK_VPN_LIST_VIEW_H_ |
OLD | NEW |