| 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 #include "ash/common/system/chromeos/network/network_list_md.h" |    5 #include "ash/system/network/network_list_md.h" | 
|    6  |    6  | 
|    7 #include <stddef.h> |    7 #include <stddef.h> | 
|    8  |    8  | 
|    9 #include "ash/common/system/chromeos/network/network_icon.h" |  | 
|   10 #include "ash/common/system/chromeos/network/network_icon_animation.h" |  | 
|   11 #include "ash/common/system/chromeos/network/network_list_delegate.h" |  | 
|   12 #include "ash/common/system/tray/system_menu_button.h" |  | 
|   13 #include "ash/common/system/tray/tray_constants.h" |  | 
|   14 #include "ash/common/system/tray/tray_popup_item_style.h" |  | 
|   15 #include "ash/common/system/tray/tray_popup_utils.h" |  | 
|   16 #include "ash/strings/grit/ash_strings.h" |    9 #include "ash/strings/grit/ash_strings.h" | 
 |   10 #include "ash/system/network/network_icon.h" | 
 |   11 #include "ash/system/network/network_icon_animation.h" | 
 |   12 #include "ash/system/network/network_list_delegate.h" | 
 |   13 #include "ash/system/tray/system_menu_button.h" | 
 |   14 #include "ash/system/tray/tray_constants.h" | 
 |   15 #include "ash/system/tray/tray_popup_item_style.h" | 
 |   16 #include "ash/system/tray/tray_popup_utils.h" | 
|   17 #include "base/memory/ptr_util.h" |   17 #include "base/memory/ptr_util.h" | 
|   18 #include "chromeos/dbus/dbus_thread_manager.h" |   18 #include "chromeos/dbus/dbus_thread_manager.h" | 
|   19 #include "chromeos/dbus/power_manager/power_supply_properties.pb.h" |   19 #include "chromeos/dbus/power_manager/power_supply_properties.pb.h" | 
|   20 #include "chromeos/dbus/power_manager_client.h" |   20 #include "chromeos/dbus/power_manager_client.h" | 
|   21 #include "chromeos/login/login_state.h" |   21 #include "chromeos/login/login_state.h" | 
|   22 #include "chromeos/network/managed_network_configuration_handler.h" |   22 #include "chromeos/network/managed_network_configuration_handler.h" | 
|   23 #include "chromeos/network/network_state.h" |   23 #include "chromeos/network/network_state.h" | 
|   24 #include "chromeos/network/network_state_handler.h" |   24 #include "chromeos/network/network_state_handler.h" | 
|   25 #include "chromeos/network/network_state_handler_observer.h" |   25 #include "chromeos/network/network_state_handler_observer.h" | 
|   26 #include "components/device_event_log/device_event_log.h" |   26 #include "components/device_event_log/device_event_log.h" | 
| (...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  644   (*view)->SetEnabled(enabled); |  644   (*view)->SetEnabled(enabled); | 
|  645   PlaceViewAtIndex(*view, child_index++); |  645   PlaceViewAtIndex(*view, child_index++); | 
|  646   return child_index; |  646   return child_index; | 
|  647 } |  647 } | 
|  648  |  648  | 
|  649 void NetworkListViewMd::NetworkIconChanged() { |  649 void NetworkListViewMd::NetworkIconChanged() { | 
|  650   Update(); |  650   Update(); | 
|  651 } |  651 } | 
|  652  |  652  | 
|  653 }  // namespace ash |  653 }  // namespace ash | 
| OLD | NEW |