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

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

Issue 10870029: Remove legacy migration code that coupled history and bookmarks. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: More android fixes. Created 8 years, 4 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_backend.cc
diff --git a/chrome/browser/history/history_backend.cc b/chrome/browser/history/history_backend.cc
index c9407bc24af763c442f87693aae77b6dd2e7cc1e..48c039eaf8572a3e5e0dd02784362fb0c6bbb0a5 100644
--- a/chrome/browser/history/history_backend.cc
+++ b/chrome/browser/history/history_backend.cc
@@ -607,12 +607,10 @@ void HistoryBackend::InitImpl(const std::string& languages) {
FilePath history_name = history_dir_.Append(chrome::kHistoryFilename);
FilePath thumbnail_name = GetThumbnailFileName();
FilePath archived_name = GetArchivedFileName();
- FilePath tmp_bookmarks_file = history_dir_.Append(
- chrome::kHistoryBookmarksFileName);
// History database.
db_.reset(new HistoryDatabase());
- sql::InitStatus status = db_->Init(history_name, tmp_bookmarks_file);
+ sql::InitStatus status = db_->Init(history_name);
switch (status) {
case sql::INIT_OK:
break;
« no previous file with comments | « chrome/browser/history/expire_history_backend_unittest.cc ('k') | chrome/browser/history/history_database.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698