Index: chrome/browser/history/history_backend.cc |
=================================================================== |
--- chrome/browser/history/history_backend.cc (revision 88118) |
+++ chrome/browser/history/history_backend.cc (working copy) |
@@ -1716,6 +1716,7 @@ |
favicon.expired = (Time::Now() - last_updated) > |
TimeDelta::FromDays(kFaviconRefetchDays); |
favicon.image_data = data; |
+ favicon.icon_type = history::FAVICON; |
michaelbai
2011/06/09 15:49:44
The favicon.icon_type should be returned from line
|
} |
if (page_url) |
@@ -1753,6 +1754,7 @@ |
TimeDelta::FromDays(kFaviconRefetchDays); |
favicon.icon_type = icon_mappings.front().icon_type; |
favicon.image_data = data; |
+ favicon.icon_type = history::FAVICON; |
michaelbai
2011/06/09 15:49:44
The favicon.icon_type should be set in line 1755.
Finnur
2011/06/09 16:01:57
Ah, yes. You are right. I'll remove this file enti
|
} |
UMA_HISTOGRAM_TIMES("History.GetFavIconForURL", // historical name |