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

Unified Diff: chrome/browser/history/history_database.h

Issue 235863023: Eliminate the archived history database and clean up related code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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_database.h
diff --git a/chrome/browser/history/history_database.h b/chrome/browser/history/history_database.h
index c7978e35d627a120c513848b4aca743a51e6c448..43b7862388b16aac0218d01c1871fa9c086b4795 100644
--- a/chrome/browser/history/history_database.h
+++ b/chrome/browser/history/history_database.h
@@ -138,17 +138,6 @@ class HistoryDatabase : public DownloadDatabase,
// Razes the database. Returns true if successful.
bool Raze();
- // Returns true if the history backend should erase the full text search
engedy 2014/04/16 18:08:10 Note: Given that we no longer had full text search
- // and archived history files as part of version 16 -> 17 migration. The
- // time format changed in this revision, and these files would be much slower
- // to migrate. Since the data is less important, they should be deleted.
- //
- // This flag will be valid after Init() is called. It will always be false
- // when running on Windows.
- bool needs_version_17_migration() const {
- return needs_version_17_migration_;
- }
-
// Visit table functions ----------------------------------------------------
// Update the segment id of a visit. Return true on success.
@@ -200,9 +189,6 @@ class HistoryDatabase : public DownloadDatabase,
base::Time cached_early_expiration_threshold_;
- // See the getters above.
- bool needs_version_17_migration_;
-
DISALLOW_COPY_AND_ASSIGN(HistoryDatabase);
};

Powered by Google App Engine
This is Rietveld 408576698