Index: chrome/browser/history/history.h |
diff --git a/chrome/browser/history/history.h b/chrome/browser/history/history.h |
index 230eb4f419eb81ee26c3aff0a032fd58420561f3..f3f6d6dc18dcfc909f74f17d3bcce7dfad73a9e7 100644 |
--- a/chrome/browser/history/history.h |
+++ b/chrome/browser/history/history.h |
@@ -220,6 +220,17 @@ class HistoryService : public CancelableRequestProvider, |
// title in the full text index. |
void SetPageTitle(const GURL& url, const string16& title); |
+ // Updates the history database with a page's ending time stamp information. |
+ // The page can be identified by the combination of the pointer to |
+ // a RenderProcessHost, the page id and the url. |
+ // |
+ // The given pointer will not be dereferenced, it is only used for |
+ // identification purposes, hence it is a void*. |
+ void UpdateWithPageEndTime(const void* host, |
+ int32 page_id, |
+ const GURL& url, |
+ const base::Time end_ts); |
brettw
2012/03/28 17:51:45
You don't need the const here (since you pass by v
Wei Li
2012/03/28 18:53:13
Done.
|
+ |
// Indexing ------------------------------------------------------------------ |
// Notifies history of the body text of the given recently-visited URL. |