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

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

Issue 9789001: Changes to add duration into history database. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 1006640a74f1b092e339073dfeeb8a987e882920..d3c35183e5bb4c784162ffa171216cf435fcc9b5 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::UpdatePageInfo(const void* host,
+ int32 page_id,
+ const GURL& url,
+ const Time ts) {
+ ScheduleAndForget(PRIORITY_NORMAL, &HistoryBackend::UpdatePageInfo,
+ host, page_id, url, ts);
+}
+
void HistoryService::AddPageWithDetails(const GURL& url,
const string16& title,
int visit_count,

Powered by Google App Engine
This is Rietveld 408576698