| 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..6c8b691dff5add0bec466acabdd7afa46d4f4c1b 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 GetImageForConnectedMobileNetwork();
|
| +
|
| +// Gets the disconnected image for a cell network.
|
| +// TODO(estade): Expose SignalStrengthImageSource and use that instead.
|
| +UI_CHROMEOS_EXPORT gfx::ImageSkia GetImageForDisconnectedCellNetwork();
|
| +
|
| +// 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(
|
|
|