summaryrefslogtreecommitdiffstats
path: root/chrome/browser/history/text_database.h
diff options
context:
space:
mode:
authordubroy@chromium.org <dubroy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-12-06 15:42:32 +0000
committerdubroy@chromium.org <dubroy@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-12-06 15:42:32 +0000
commit3a8f32e09df393644ef80e156d2996af553f9bb7 (patch)
tree1c7eb925402e50df4de8a9ace82ff8969129e5a1 /chrome/browser/history/text_database.h
parent24fc4deca892b4957aa96fb74775d1919bbab732 (diff)
downloadchromium_src-3a8f32e09df393644ef80e156d2996af553f9bb7.zip
chromium_src-3a8f32e09df393644ef80e156d2996af553f9bb7.tar.gz
chromium_src-3a8f32e09df393644ef80e156d2996af553f9bb7.tar.bz2
History: Query for results a page at a time, rather than a day at a time.
The history frontend displays visits a page at a time. Add the ability to query the backend for contiguous pages of results, rather than making multiple queries until enough results have accumulated. This additionally fixes a bug where visits would be skipped if a day (or month, when searching) had more than 150 results. BUG= Review URL: https://chromiumcodereview.appspot.com/11415098 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@171498 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/history/text_database.h')
-rw-r--r--chrome/browser/history/text_database.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/browser/history/text_database.h b/chrome/browser/history/text_database.h
index 9cf376cb..1f9b4e5 100644
--- a/chrome/browser/history/text_database.h
+++ b/chrome/browser/history/text_database.h
@@ -30,6 +30,9 @@ class TextDatabase {
Match();
~Match();
+ // The database rowid of the match.
+ int64 rowid;
+
// URL of the match.
GURL url;