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 #include "ui/chromeos/network/network_list.h" | 5 #include "ui/chromeos/network/network_list.h" |
6 | 6 |
7 #include "chromeos/dbus/dbus_thread_manager.h" | 7 #include "chromeos/dbus/dbus_thread_manager.h" |
8 #include "chromeos/dbus/power_manager/power_supply_properties.pb.h" | 8 #include "chromeos/dbus/power_manager/power_supply_properties.pb.h" |
9 #include "chromeos/dbus/power_manager_client.h" | 9 #include "chromeos/dbus/power_manager_client.h" |
10 #include "chromeos/device_event_log.h" | |
11 #include "chromeos/network/network_state.h" | 10 #include "chromeos/network/network_state.h" |
12 #include "chromeos/network/network_state_handler.h" | 11 #include "chromeos/network/network_state_handler.h" |
13 #include "chromeos/network/network_state_handler_observer.h" | 12 #include "chromeos/network/network_state_handler_observer.h" |
| 13 #include "components/device_event_log/device_event_log.h" |
14 #include "grit/ui_chromeos_strings.h" | 14 #include "grit/ui_chromeos_strings.h" |
15 #include "ui/base/resource/resource_bundle.h" | 15 #include "ui/base/resource/resource_bundle.h" |
16 #include "ui/chromeos/network/network_icon.h" | 16 #include "ui/chromeos/network/network_icon.h" |
17 #include "ui/chromeos/network/network_icon_animation.h" | 17 #include "ui/chromeos/network/network_icon_animation.h" |
18 #include "ui/chromeos/network/network_info.h" | 18 #include "ui/chromeos/network/network_info.h" |
19 #include "ui/chromeos/network/network_list_delegate.h" | 19 #include "ui/chromeos/network/network_list_delegate.h" |
20 #include "ui/gfx/font.h" | 20 #include "ui/gfx/font.h" |
21 #include "ui/views/controls/label.h" | 21 #include "ui/views/controls/label.h" |
22 #include "ui/views/view.h" | 22 #include "ui/views/view.h" |
23 | 23 |
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
291 needs_relayout = true; | 291 needs_relayout = true; |
292 } | 292 } |
293 return needs_relayout; | 293 return needs_relayout; |
294 } | 294 } |
295 | 295 |
296 void NetworkListView::NetworkIconChanged() { | 296 void NetworkListView::NetworkIconChanged() { |
297 UpdateNetworkList(); | 297 UpdateNetworkList(); |
298 } | 298 } |
299 | 299 |
300 } // namespace ui | 300 } // namespace ui |
OLD | NEW |