| 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 #ifndef ASH_COMMON_SYSTEM_CHROMEOS_NETWORK_NETWORK_ICON_H_ | 5 #ifndef ASH_SYSTEM_NETWORK_NETWORK_ICON_H_ |
| 6 #define ASH_COMMON_SYSTEM_CHROMEOS_NETWORK_NETWORK_ICON_H_ | 6 #define ASH_SYSTEM_NETWORK_NETWORK_ICON_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "ash/ash_export.h" | 10 #include "ash/ash_export.h" |
| 11 #include "base/strings/string16.h" | 11 #include "base/strings/string16.h" |
| 12 #include "ui/gfx/image/image_skia.h" | 12 #include "ui/gfx/image/image_skia.h" |
| 13 | 13 |
| 14 namespace chromeos { | 14 namespace chromeos { |
| 15 class NetworkState; | 15 class NetworkState; |
| 16 } | 16 } |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 bool* animating); | 64 bool* animating); |
| 65 | 65 |
| 66 // Called when the list of networks changes. Retreives the list of networks | 66 // Called when the list of networks changes. Retreives the list of networks |
| 67 // from the global NetworkStateHandler instance and removes cached entries | 67 // from the global NetworkStateHandler instance and removes cached entries |
| 68 // that are no longer in the list. | 68 // that are no longer in the list. |
| 69 ASH_EXPORT void PurgeNetworkIconCache(); | 69 ASH_EXPORT void PurgeNetworkIconCache(); |
| 70 | 70 |
| 71 } // namespace network_icon | 71 } // namespace network_icon |
| 72 } // namespace ash | 72 } // namespace ash |
| 73 | 73 |
| 74 #endif // ASH_COMMON_SYSTEM_CHROMEOS_NETWORK_NETWORK_ICON_H_ | 74 #endif // ASH_SYSTEM_NETWORK_NETWORK_ICON_H_ |
| OLD | NEW |