| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_NETWORK_NETWORK_LIST_MD_H_ | 5 #ifndef ASH_COMMON_SYSTEM_CHROMEOS_NETWORK_NETWORK_LIST_MD_H_ |
| 6 #define ASH_SYSTEM_NETWORK_NETWORK_LIST_MD_H_ | 6 #define ASH_COMMON_SYSTEM_CHROMEOS_NETWORK_NETWORK_LIST_MD_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <set> | 10 #include <set> |
| 11 #include <string> | 11 #include <string> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "ash/system/network/network_icon_animation_observer.h" | 14 #include "ash/common/system/chromeos/network/network_icon_animation_observer.h" |
| 15 #include "ash/system/network/network_info.h" | 15 #include "ash/common/system/chromeos/network/network_info.h" |
| 16 #include "ash/system/network/network_list_view_base.h" | 16 #include "ash/common/system/chromeos/network/network_list_view_base.h" |
| 17 #include "base/macros.h" | 17 #include "base/macros.h" |
| 18 #include "chromeos/network/network_state_handler.h" | 18 #include "chromeos/network/network_state_handler.h" |
| 19 #include "chromeos/network/network_type_pattern.h" | 19 #include "chromeos/network/network_type_pattern.h" |
| 20 #include "ui/gfx/image/image_skia.h" | 20 #include "ui/gfx/image/image_skia.h" |
| 21 | 21 |
| 22 namespace views { | 22 namespace views { |
| 23 class Label; | 23 class Label; |
| 24 class Separator; | 24 class Separator; |
| 25 class View; | 25 class View; |
| 26 } | 26 } |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 | 122 |
| 123 // A map of network guids to their view. | 123 // A map of network guids to their view. |
| 124 typedef std::map<std::string, views::View*> NetworkGuidMap; | 124 typedef std::map<std::string, views::View*> NetworkGuidMap; |
| 125 NetworkGuidMap network_guid_map_; | 125 NetworkGuidMap network_guid_map_; |
| 126 | 126 |
| 127 DISALLOW_COPY_AND_ASSIGN(NetworkListViewMd); | 127 DISALLOW_COPY_AND_ASSIGN(NetworkListViewMd); |
| 128 }; | 128 }; |
| 129 | 129 |
| 130 } // namespace ash | 130 } // namespace ash |
| 131 | 131 |
| 132 #endif // ASH_SYSTEM_NETWORK_NETWORK_LIST_MD_H_ | 132 #endif // ASH_COMMON_SYSTEM_CHROMEOS_NETWORK_NETWORK_LIST_MD_H_ |
| OLD | NEW |