OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/system/chromeos/network/network_icon.h" | 5 #include "ash/system/chromeos/network/network_icon.h" |
6 | 6 |
7 #include "ash/shell.h" | 7 #include "ash/shell.h" |
8 #include "ash/system/chromeos/network/network_icon_animation.h" | 8 #include "ash/system/chromeos/network/network_icon_animation.h" |
9 #include "ash/system/chromeos/network/network_icon_animation_observer.h" | 9 #include "ash/system/chromeos/network/network_icon_animation_observer.h" |
10 #include "ash/system/tray/system_tray_delegate.h" | 10 #include "ash/system/tray/system_tray_delegate.h" |
11 #include "base/strings/utf_string_conversions.h" | 11 #include "base/strings/utf_string_conversions.h" |
12 #include "chromeos/network/device_state.h" | 12 #include "chromeos/network/device_state.h" |
13 #include "chromeos/network/network_connection_handler.h" | 13 #include "chromeos/network/network_connection_handler.h" |
14 #include "chromeos/network/network_state.h" | 14 #include "chromeos/network/network_state.h" |
15 #include "chromeos/network/network_state_handler.h" | 15 #include "chromeos/network/network_state_handler.h" |
16 #include "chromeos/network/shill_property_util.h" | |
17 #include "grit/ash_resources.h" | 16 #include "grit/ash_resources.h" |
18 #include "grit/ash_strings.h" | 17 #include "grit/ash_strings.h" |
19 #include "third_party/cros_system_api/dbus/service_constants.h" | 18 #include "third_party/cros_system_api/dbus/service_constants.h" |
20 #include "ui/base/l10n/l10n_util.h" | 19 #include "ui/base/l10n/l10n_util.h" |
21 #include "ui/base/resource/resource_bundle.h" | 20 #include "ui/base/resource/resource_bundle.h" |
22 #include "ui/gfx/canvas.h" | 21 #include "ui/gfx/canvas.h" |
23 #include "ui/gfx/image/image_skia_operations.h" | 22 #include "ui/gfx/image/image_skia_operations.h" |
24 #include "ui/gfx/image/image_skia_source.h" | 23 #include "ui/gfx/image/image_skia_source.h" |
25 #include "ui/gfx/rect.h" | 24 #include "ui/gfx/rect.h" |
26 #include "ui/gfx/size_conversions.h" | 25 #include "ui/gfx/size_conversions.h" |
(...skipping 843 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
870 iter != networks.end(); ++iter) { | 869 iter != networks.end(); ++iter) { |
871 network_paths.insert((*iter)->path()); | 870 network_paths.insert((*iter)->path()); |
872 } | 871 } |
873 PurgeIconMap(ICON_TYPE_TRAY, network_paths); | 872 PurgeIconMap(ICON_TYPE_TRAY, network_paths); |
874 PurgeIconMap(ICON_TYPE_DEFAULT_VIEW, network_paths); | 873 PurgeIconMap(ICON_TYPE_DEFAULT_VIEW, network_paths); |
875 PurgeIconMap(ICON_TYPE_LIST, network_paths); | 874 PurgeIconMap(ICON_TYPE_LIST, network_paths); |
876 } | 875 } |
877 | 876 |
878 } // namespace network_icon | 877 } // namespace network_icon |
879 } // namespace ash | 878 } // namespace ash |
OLD | NEW |