Index: components/enhanced_bookmarks/image_store.cc |
diff --git a/components/enhanced_bookmarks/image_store.cc b/components/enhanced_bookmarks/image_store.cc |
index a7e32e20718c35afd06ab4267771abb502e280a5..a3705781701be60cb7d23356a0615f16100d8155 100644 |
--- a/components/enhanced_bookmarks/image_store.cc |
+++ b/components/enhanced_bookmarks/image_store.cc |
@@ -18,7 +18,7 @@ void ImageStore::ChangeImageURL(const GURL& from, const GURL& to) { |
if (!HasKey(from)) |
return; |
- std::pair<gfx::Image, GURL> image_info = Get(from); |
+ const enhanced_bookmarks::ImageRecord& record = Get(from); |
Erase(from); |
- Insert(to, image_info.second, image_info.first); |
+ Insert(to, record); |
} |