| Index: chrome/common/extensions/extension_action.cc
|
| diff --git a/chrome/common/extensions/extension_action.cc b/chrome/common/extensions/extension_action.cc
|
| index b2bef14906d110b257e207c05b482a0562204557..ef8759dfb6d31949deed0a20ca9f2e2c5bf0db5b 100644
|
| --- a/chrome/common/extensions/extension_action.cc
|
| +++ b/chrome/common/extensions/extension_action.cc
|
| @@ -305,7 +305,7 @@ void ExtensionAction::SetIcon(int tab_id, const gfx::Image& image) {
|
| gfx::Image ExtensionAction::GetIcon(int tab_id) const {
|
| // Check if a specific icon is set for this tab.
|
| gfx::ImageSkia icon = GetValue(&icon_, tab_id);
|
| - if (icon.empty()) {
|
| + if (icon.isNull()) {
|
| // Need to find an icon from a path.
|
| const std::string* path = NULL;
|
| // Check if one of the elements of icon_path() was selected.
|
|
|