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

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: Created 7 years, 6 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_types.cc
diff --git a/chrome/browser/history/history_types.cc b/chrome/browser/history/history_types.cc
index 19521fae3fe61eb086cd7b6275fafdbb7da9fece..c1853cb6cf9df895c28b75ade7b6a85c3f1ecd23 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() {

Powered by Google App Engine
This is Rietveld 408576698