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

Unified Diff: components/history/core/browser/visit_database.h

Issue 1345473003: Added HistoryService::GetHistoryCount() and helper functions in components/history (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Respond to msramek's comment Created 5 years, 3 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
« no previous file with comments | « components/history/core/browser/history_types.h ('k') | components/history/core/browser/visit_database.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/history/core/browser/visit_database.h
diff --git a/components/history/core/browser/visit_database.h b/components/history/core/browser/visit_database.h
index 0aead0c67ba66faae6b504994d8e771f1d942bf6..765dc81e4871023016ec2253298242de0c843e42 100644
--- a/components/history/core/browser/visit_database.h
+++ b/components/history/core/browser/visit_database.h
@@ -178,6 +178,14 @@ class VisitDatabase {
int* count,
base::Time* first_visit);
+ // Gets the number of URLs as seen in chrome://history with infinite date
+ // range. "User-visible" is defined as in GetVisibleVisitsInRange() above,
+ // i.e. excluding redirects and subframes. Also, if a URL is visited in
+ // multiple days, the URL is counted once for each day. For determination
+ // of the date, timestamps are converted to dates using local time.
+ // Returns false if there's a failure executing the statement. True otherwise.
+ bool GetHistoryCount(int* count);
+
// Get the time of the first item in our database.
bool GetStartDate(base::Time* first_visit);
« no previous file with comments | « components/history/core/browser/history_types.h ('k') | components/history/core/browser/visit_database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698