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

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

Issue 8469018: Provide assumed favicon for intents if service provider page was never visited. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address review issues Created 9 years, 1 month 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 583e1067289ff6bffd7c5f851c9216a3c0ffe077..17ba93e1f18086b6879782be9590da050219a0fc 100644
--- a/chrome/browser/history/history.cc
+++ b/chrome/browser/history/history.cc
@@ -497,6 +497,12 @@ void HistoryService::SetFaviconOutOfDateForPage(const GURL& page_url) {
&HistoryBackend::SetFaviconOutOfDateForPage, page_url);
}
+void HistoryService::CloneFavicon(const GURL& old_page_url,
+ const GURL& new_page_url) {
+ ScheduleAndForget(PRIORITY_NORMAL, &HistoryBackend::CloneFavicon,
+ old_page_url, new_page_url);
+}
+
void HistoryService::SetImportedFavicons(
const std::vector<history::ImportedFaviconUsage>& favicon_usage) {
ScheduleAndForget(PRIORITY_NORMAL,

Powered by Google App Engine
This is Rietveld 408576698