| Index: chrome/browser/ui/cocoa/location_bar/keyword_hint_decoration.mm
|
| diff --git a/chrome/browser/ui/cocoa/location_bar/keyword_hint_decoration.mm b/chrome/browser/ui/cocoa/location_bar/keyword_hint_decoration.mm
|
| index a22813d768de5a84302feb6d6559154c0496bcd7..195e64238d3ddef7a36f2eebd4df8e8851608d82 100644
|
| --- a/chrome/browser/ui/cocoa/location_bar/keyword_hint_decoration.mm
|
| +++ b/chrome/browser/ui/cocoa/location_bar/keyword_hint_decoration.mm
|
| @@ -56,8 +56,8 @@ KeywordHintDecoration::~KeywordHintDecoration() {
|
|
|
| NSImage* KeywordHintDecoration::GetHintImage() {
|
| if (!hint_image_) {
|
| - hint_image_.reset([ResourceBundle::GetSharedInstance().
|
| - GetNativeImageNamed(IDR_LOCATION_BAR_KEYWORD_HINT_TAB) retain]);
|
| + hint_image_.reset(ResourceBundle::GetSharedInstance().
|
| + GetNativeImageNamed(IDR_LOCATION_BAR_KEYWORD_HINT_TAB).CopyNSImage());
|
| }
|
| return hint_image_;
|
| }
|
|
|