Index: chrome/browser/history/expire_history_backend_unittest.cc |
diff --git a/chrome/browser/history/expire_history_backend_unittest.cc b/chrome/browser/history/expire_history_backend_unittest.cc |
index 2cf7385c1a0cf088991c361a461d6d10ffda9f05..1a8a21ac783076760c15f359fda55d375167b830 100644 |
--- a/chrome/browser/history/expire_history_backend_unittest.cc |
+++ b/chrome/browser/history/expire_history_backend_unittest.cc |
@@ -319,11 +319,8 @@ void ExpireHistoryTest::AddExampleSourceData(const GURL& url, URLID* id) { |
bool ExpireHistoryTest::HasFavicon(FaviconID favicon_id) { |
if (!thumb_db_.get() || favicon_id == 0) |
return false; |
- Time last_updated; |
- std::vector<unsigned char> icon_data_unused; |
GURL icon_url; |
- return thumb_db_->GetFavicon(favicon_id, &last_updated, &icon_data_unused, |
- &icon_url, NULL); |
+ return thumb_db_->GetFaviconHeader(favicon_id, &icon_url, NULL, NULL); |
} |
FaviconID ExpireHistoryTest::GetFavicon(const GURL& page_url, |