Index: chrome/browser/favicon/favicon_handler.cc |
diff --git a/chrome/browser/favicon/favicon_handler.cc b/chrome/browser/favicon/favicon_handler.cc |
index 41d388c6c8417b5554ef712635583daf6d25cbd0..80c4883a40fa7f91a58cf4e215da9c9f015678c8 100644 |
--- a/chrome/browser/favicon/favicon_handler.cc |
+++ b/chrome/browser/favicon/favicon_handler.cc |
@@ -417,7 +417,7 @@ void FaviconHandler::OnFaviconDataForInitialURL( |
// user doesn't see a flash of the default favicon. |
entry->GetFavicon().url = favicon.icon_url; |
if (favicon.is_valid()) |
- UpdateFavicon(entry, favicon.image_data); |
+ UpdateFavicon(entry, favicon.bitmap_data); |
entry->GetFavicon().valid = true; |
} |
@@ -485,7 +485,7 @@ void FaviconHandler::OnFaviconData(FaviconService::Handle handle, |
// There is a favicon, set it now. If expired we'll download the current |
// one again, but at least the user will get some icon instead of the |
// default and most likely the current one is fine anyway. |
- UpdateFavicon(entry, favicon.image_data); |
+ UpdateFavicon(entry, favicon.bitmap_data); |
} |
if (!favicon.known_icon || favicon.expired) { |
// We don't know the favicon, or it is out of date. Request the current |