| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 UI_CHROMEOS_NETWORK_NETWORK_LIST_H_ | 5 #ifndef UI_CHROMEOS_NETWORK_NETWORK_LIST_H_ |
| 6 #define UI_CHROMEOS_NETWORK_NETWORK_LIST_H_ | 6 #define UI_CHROMEOS_NETWORK_NETWORK_LIST_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "base/macros.h" |
| 12 #include "chromeos/network/network_state_handler.h" | 13 #include "chromeos/network/network_state_handler.h" |
| 13 #include "ui/chromeos/network/network_icon_animation_observer.h" | 14 #include "ui/chromeos/network/network_icon_animation_observer.h" |
| 14 #include "ui/chromeos/network/network_list_view_base.h" | 15 #include "ui/chromeos/network/network_list_view_base.h" |
| 15 #include "ui/chromeos/ui_chromeos_export.h" | 16 #include "ui/chromeos/ui_chromeos_export.h" |
| 16 #include "ui/gfx/image/image_skia.h" | 17 #include "ui/gfx/image/image_skia.h" |
| 17 | 18 |
| 18 namespace views { | 19 namespace views { |
| 19 class Label; | 20 class Label; |
| 20 class View; | 21 class View; |
| 21 } | 22 } |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 // A map of network service paths to their view. | 71 // A map of network service paths to their view. |
| 71 typedef std::map<std::string, views::View*> ServicePathMap; | 72 typedef std::map<std::string, views::View*> ServicePathMap; |
| 72 ServicePathMap service_path_map_; | 73 ServicePathMap service_path_map_; |
| 73 | 74 |
| 74 DISALLOW_COPY_AND_ASSIGN(NetworkListView); | 75 DISALLOW_COPY_AND_ASSIGN(NetworkListView); |
| 75 }; | 76 }; |
| 76 | 77 |
| 77 } // namespace ui | 78 } // namespace ui |
| 78 | 79 |
| 79 #endif // UI_CHROMEOS_NETWORK_NETWORK_LIST_H_ | 80 #endif // UI_CHROMEOS_NETWORK_NETWORK_LIST_H_ |
| OLD | NEW |