Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2019)

Unified Diff: chrome/browser/history/history.cc

Issue 6693021: fav icon -> favicon. Pass 5: fav_icon -> favicon (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/history/history.cc
diff --git a/chrome/browser/history/history.cc b/chrome/browser/history/history.cc
index 1b3a6e0c3753794c388cad2a72ede958010472c1..8fe29683b43e5ab6ac3958989cb7d5c795e189db 100644
--- a/chrome/browser/history/history.cc
+++ b/chrome/browser/history/history.cc
@@ -451,7 +451,7 @@ HistoryService::Handle HistoryService::GetPageThumbnail(
void HistoryService::GetFavicon(FaviconService::GetFaviconRequest* request,
const GURL& icon_url) {
Schedule(PRIORITY_NORMAL, &HistoryBackend::GetFavicon, NULL, request,
- icon_url, history::FAV_ICON);
+ icon_url, history::FAVICON);
}
void HistoryService::UpdateFaviconMappingAndFetch(
@@ -459,14 +459,14 @@ void HistoryService::UpdateFaviconMappingAndFetch(
const GURL& page_url,
const GURL& icon_url) {
Schedule(PRIORITY_NORMAL, &HistoryBackend::UpdateFavIconMappingAndFetch, NULL,
- request, page_url, icon_url, history::FAV_ICON);
+ request, page_url, icon_url, history::FAVICON);
}
void HistoryService::GetFaviconForURL(
FaviconService::GetFaviconRequest* request,
const GURL& page_url) {
Schedule(PRIORITY_NORMAL, &HistoryBackend::GetFavIconForURL, NULL, request,
- page_url, history::FAV_ICON);
+ page_url, history::FAVICON);
}
void HistoryService::SetFavicon(const GURL& page_url,
@@ -478,7 +478,7 @@ void HistoryService::SetFavicon(const GURL& page_url,
ScheduleAndForget(PRIORITY_NORMAL, &HistoryBackend::SetFavicon,
page_url, icon_url,
scoped_refptr<RefCountedMemory>(new RefCountedBytes(image_data)),
- history::FAV_ICON);
+ history::FAVICON);
}
void HistoryService::SetFaviconOutOfDateForPage(const GURL& page_url) {
« no previous file with comments | « chrome/browser/history/expire_history_backend_unittest.cc ('k') | chrome/browser/history/history_backend.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698