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

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

Issue 896983003: Componentize ScoredHistoryMatch (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename ScoredHistoryMatchBuilder to ScoredHistoryMatchBuilderImpl Created 5 years, 10 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 306408ccebc6e85602729ed0edd6702f053056de..5f913c14cd88c5c6357bfc30c8c7f313deb2eae3 100644
--- a/chrome/browser/history/history_service.cc
+++ b/chrome/browser/history/history_service.cc
@@ -976,8 +976,8 @@ bool HistoryService::Init(
if (!languages.empty()) {
// Do not create |in_memory_url_index_| when languages is empty (which
// should only happens during testing).
- in_memory_url_index_.reset(new history::InMemoryURLIndex(
- this, history_dir_, languages, history_client_));
+ in_memory_url_index_.reset(
+ new history::InMemoryURLIndex(this, history_dir_, languages));
in_memory_url_index_->Init();
}

Powered by Google App Engine
This is Rietveld 408576698