Index: chrome/browser/chromeos/status/network_menu_button.h |
=================================================================== |
--- chrome/browser/chromeos/status/network_menu_button.h (revision 76240) |
+++ chrome/browser/chromeos/status/network_menu_button.h (working copy) |
@@ -74,11 +74,11 @@ |
private: |
// Sets the icon and the badge. |
- void SetIconAndBadge(const SkBitmap& icon, const SkBitmap& badge); |
+ void SetIconAndBadge(const SkBitmap* icon, const SkBitmap* badge); |
// Sets the icon only. Keep the previous badge. |
- void SetIconOnly(const SkBitmap& icon); |
+ void SetIconOnly(const SkBitmap* icon); |
// Sets the badge only. Keep the previous icon. |
- void SetBadgeOnly(const SkBitmap& badge); |
+ void SetBadgeOnly(const SkBitmap* badge); |
// Set the network icon based on the status of the |network| |
void SetNetworkIcon(NetworkLibrary* cros, const Network* network); |
@@ -90,9 +90,9 @@ |
StatusAreaHost* host_; |
// The icon showing the network strength. |
- SkBitmap icon_; |
+ const SkBitmap* icon_; |
// A badge icon displayed on top of the icon. |
- SkBitmap badge_; |
+ const SkBitmap* badge_; |
// The throb animation that does the wifi connecting animation. |
ui::ThrobAnimation animation_connecting_; |