Chromium Code Reviews| Index: chrome/browser/chromeos/status/network_menu_button.h |
| =================================================================== |
| --- chrome/browser/chromeos/status/network_menu_button.h (revision 76085) |
| +++ 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(SkBitmap* icon, SkBitmap* badge); |
|
stevenjb
2011/02/28 20:39:05
const SkBitmap& icon, const SkBitmap* badge
Charlie Lee
2011/02/28 21:26:33
Done.
|
| // Sets the icon only. Keep the previous badge. |
| - void SetIconOnly(const SkBitmap& icon); |
| + void SetIconOnly(SkBitmap* icon); |
|
stevenjb
2011/02/28 20:39:05
const SkBitmap& icon
Charlie Lee
2011/02/28 21:26:33
Done.
|
| // Sets the badge only. Keep the previous icon. |
| - void SetBadgeOnly(const SkBitmap& badge); |
| + void SetBadgeOnly(SkBitmap* badge); |
|
stevenjb
2011/02/28 20:39:05
const SkBitmap* badge
Charlie Lee
2011/02/28 21:26:33
Done.
|
| // 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_; |
| + SkBitmap* icon_; |
|
stevenjb
2011/02/28 20:39:05
const SkBitmap& icon_
Charlie Lee
2011/02/28 21:26:33
Done.
|
| // A badge icon displayed on top of the icon. |
| - SkBitmap badge_; |
| + SkBitmap* badge_; |
|
stevenjb
2011/02/28 20:39:05
const SkBitmap* badge_
Charlie Lee
2011/02/28 21:26:33
Done.
|
| // The throb animation that does the wifi connecting animation. |
| ui::ThrobAnimation animation_connecting_; |