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

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: Remove obsoleted unit test. 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 9c7d7fa2782c791d2eb6d3ece3d542235e311530..5523199d789d285be0e60fea5dba7f0eec2c608d 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;

Powered by Google App Engine
This is Rietveld 408576698