diff options
author | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-21 03:24:49 +0000 |
---|---|---|
committer | sky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-21 03:24:49 +0000 |
commit | 2ec53b5e7018ed63499e0a4fab557f820b03fc53 (patch) | |
tree | 3a38d3a7c52cf844cd1d1cf5867e1af18330397e /chrome/browser/history/history_database.h | |
parent | 18d4b6cecb490ffa3dcb53cfad7ca0ad695217c4 (diff) | |
download | chromium_src-2ec53b5e7018ed63499e0a4fab557f820b03fc53.zip chromium_src-2ec53b5e7018ed63499e0a4fab557f820b03fc53.tar.gz chromium_src-2ec53b5e7018ed63499e0a4fab557f820b03fc53.tar.bz2 |
Disables top sites until we get it in a better shape.
BUG=40313
TEST=see bug. aocampo has some test cases too.
Review URL: http://codereview.chromium.org/3412015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@60013 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/history/history_database.h')
-rw-r--r-- | chrome/browser/history/history_database.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/chrome/browser/history/history_database.h b/chrome/browser/history/history_database.h index fe49dca..fe74e89 100644 --- a/chrome/browser/history/history_database.h +++ b/chrome/browser/history/history_database.h @@ -123,14 +123,6 @@ class HistoryDatabase : public DownloadDatabase, return needs_version_17_migration_; } - // Returns true if the Thumbnails database should be renamed to - // Favicons database. 17 -> 18 is migration to TopSites. ThumbnailsDatabase - // doesn't store the thumbnails any more, only the favicons. Hence, its file - // is renamed from Thumbnails to Favicons. - bool needs_version_18_migration() const { - return needs_version_18_migration_; - } - // Update the database version after the TopSites migration. void MigrationToTopSitesDone(); @@ -179,7 +171,6 @@ class HistoryDatabase : public DownloadDatabase, // See the getters above. bool needs_version_17_migration_; - bool needs_version_18_migration_; DISALLOW_COPY_AND_ASSIGN(HistoryDatabase); }; |