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

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

Issue 16951015: Remove TextDatabase from the history service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@replace_fts
Patch Set: Sync and rebase. Created 7 years, 5 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 | « chrome/browser/history/history_types.h ('k') | chrome/browser/history/text_database.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/history/history_types.cc
diff --git a/chrome/browser/history/history_types.cc b/chrome/browser/history/history_types.cc
index f0e643976b7cabd70f62dcfb633efe6df30a35ee..f766a0b1d90fe2b41b2e76b1e12f378432b608ba 100644
--- a/chrome/browser/history/history_types.cc
+++ b/chrome/browser/history/history_types.cc
@@ -69,8 +69,7 @@ VisitRow::VisitRow()
url_id(0),
referring_visit(0),
transition(content::PAGE_TRANSITION_LINK),
- segment_id(0),
- is_indexed(false) {
+ segment_id(0) {
}
VisitRow::VisitRow(URLID arg_url_id,
@@ -83,8 +82,7 @@ VisitRow::VisitRow(URLID arg_url_id,
visit_time(arg_visit_time),
referring_visit(arg_referring_visit),
transition(arg_transition),
- segment_id(arg_segment_id),
- is_indexed(false) {
+ segment_id(arg_segment_id) {
}
VisitRow::~VisitRow() {
@@ -246,7 +244,6 @@ void QueryResults::AdjustResultMap(size_t begin, size_t end, ptrdiff_t delta) {
QueryOptions::QueryOptions()
: max_count(0),
- body_only(false),
duplicate_policy(QueryOptions::REMOVE_ALL_DUPLICATES) {
}
« no previous file with comments | « chrome/browser/history/history_types.h ('k') | chrome/browser/history/text_database.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698