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

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

Issue 16951015: Remove TextDatabase from the history service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@replace_fts
Patch Set: Remove QueryOptions.body_only 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_service.cc
diff --git a/chrome/browser/history/history_service.cc b/chrome/browser/history/history_service.cc
index 1e4361ab12de01e527621b6ae0687cbd73f795ef..50905f3ae57da1d3c6de7cc5d773c1ce03de8c45 100644
--- a/chrome/browser/history/history_service.cc
+++ b/chrome/browser/history/history_service.cc
@@ -14,10 +14,6 @@
// -> SQLite connection to History
// -> ArchivedDatabase
// -> SQLite connection to Archived History
-// -> TextDatabaseManager
-// -> SQLite connection to one month's data
-// -> SQLite connection to one month's data
-// ...
// -> ThumbnailDatabase
// -> SQLite connection to Thumbnails
// (and favicons)
@@ -597,16 +593,6 @@ void HistoryService::AddPagesWithDetails(const history::URLRows& info,
&HistoryBackend::AddPagesWithDetails, info, visit_source);
}
-void HistoryService::SetPageContents(const GURL& url,
- const string16& contents) {
- DCHECK(thread_checker_.CalledOnValidThread());
- if (!CanAddURL(url))
- return;
-
- ScheduleAndForget(PRIORITY_LOW, &HistoryBackend::SetPageContents,
- url, contents);
-}
-
HistoryService::Handle HistoryService::GetPageThumbnail(
const GURL& page_url,
CancelableRequestConsumerBase* consumer,

Powered by Google App Engine
This is Rietveld 408576698