Chromium Code Reviews| Index: ui/chromeos/network/network_icon.h |
| diff --git a/ui/chromeos/network/network_icon.h b/ui/chromeos/network/network_icon.h |
| index 2167343365555b5a3693d2466fb27ee06519a88d..31efdb3655f68aa0dd5e0a928e068e4c346a6ad0 100644 |
| --- a/ui/chromeos/network/network_icon.h |
| +++ b/ui/chromeos/network/network_icon.h |
| @@ -34,20 +34,16 @@ UI_CHROMEOS_EXPORT gfx::ImageSkia GetImageForNetwork( |
| const chromeos::NetworkState* network, |
| IconType icon_type); |
| -// Gets the fulls strength image for a connected network type. |
| -UI_CHROMEOS_EXPORT gfx::ImageSkia GetImageForConnectedNetwork( |
| - IconType icon_type, |
| - const std::string& network_type); |
| - |
| -// Gets the image for a connecting network type. |
| -UI_CHROMEOS_EXPORT gfx::ImageSkia GetImageForConnectingNetwork( |
| - IconType icon_type, |
| - const std::string& network_type); |
| - |
| -// Gets the image for a disconnected network type. |
| -UI_CHROMEOS_EXPORT gfx::ImageSkia GetImageForDisconnectedNetwork( |
| - IconType icon_type, |
| - const std::string& network_type); |
| +// Gets the fulls strength image for a wifi network. |
| +// TODO(estade): Expose SignalStrengthImageSource and use that instead. |
| +UI_CHROMEOS_EXPORT gfx::ImageSkia GetImageForConnectedWifiNetwork(); |
| + |
| +// Gets the disconnected image for a cell network. |
| +// TODO(estade): Expose SignalStrengthImageSource and use that instead. |
| +UI_CHROMEOS_EXPORT gfx::ImageSkia GetImageForDisconnectedCellNetwork(); |
|
stevenjb
2016/09/14 15:49:45
s/Cell/Mobile/ since iirc this applies to WiMAX al
Evan Stade
2016/09/14 19:58:23
changed the name, code search should be pretty eas
|
| + |
| +// Returns a vpn image suitable for use on a light background. |
| +UI_CHROMEOS_EXPORT gfx::ImageSkia GetVpnImage(); |
| // Returns the label for |network| based on |icon_type|. |network| can be NULL. |
| UI_CHROMEOS_EXPORT base::string16 GetLabelForNetwork( |