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

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

Issue 19637009: Revert 212459 "Remove TextDatabase from the history service." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: 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 | « trunk/src/chrome/browser/history/history_types.h ('k') | trunk/src/chrome/browser/history/text_database.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/src/chrome/browser/history/history_types.cc
===================================================================
--- trunk/src/chrome/browser/history/history_types.cc (revision 212472)
+++ trunk/src/chrome/browser/history/history_types.cc (working copy)
@@ -69,7 +69,8 @@
url_id(0),
referring_visit(0),
transition(content::PAGE_TRANSITION_LINK),
- segment_id(0) {
+ segment_id(0),
+ is_indexed(false) {
}
VisitRow::VisitRow(URLID arg_url_id,
@@ -82,7 +83,8 @@
visit_time(arg_visit_time),
referring_visit(arg_referring_visit),
transition(arg_transition),
- segment_id(arg_segment_id) {
+ segment_id(arg_segment_id),
+ is_indexed(false) {
}
VisitRow::~VisitRow() {
@@ -244,6 +246,7 @@
QueryOptions::QueryOptions()
: max_count(0),
+ body_only(false),
duplicate_policy(QueryOptions::REMOVE_ALL_DUPLICATES) {
}
« no previous file with comments | « trunk/src/chrome/browser/history/history_types.h ('k') | trunk/src/chrome/browser/history/text_database.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698