Index: chrome/browser/history/history.cc |
diff --git a/chrome/browser/history/history.cc b/chrome/browser/history/history.cc |
index aefbe87711e85d92afa6dcdc8d83f941e71881db..781d8aa0407446ea53b68b6d458216a7a2d4518a 100644 |
--- a/chrome/browser/history/history.cc |
+++ b/chrome/browser/history/history.cc |
@@ -385,6 +385,14 @@ void HistoryService::SetPageTitle(const GURL& url, |
ScheduleAndForget(PRIORITY_NORMAL, &HistoryBackend::SetPageTitle, url, title); |
} |
+void HistoryService::UpdateWithPageEndTime(const void* host, |
+ int32 page_id, |
+ const GURL& url, |
+ Time end_ts) { |
+ ScheduleAndForget(PRIORITY_NORMAL, &HistoryBackend::UpdateWithPageEndTime, |
+ host, page_id, url, end_ts); |
+} |
+ |
void HistoryService::AddPageWithDetails(const GURL& url, |
const string16& title, |
int visit_count, |