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, |