| Index: chrome/browser/history/history_backend.cc
|
| diff --git a/chrome/browser/history/history_backend.cc b/chrome/browser/history/history_backend.cc
|
| index 90be73373bb419a7bfeaf3b737d9b0745856e02b..a02d3e99d80b4bba169b94a0c42dcea40e03efbb 100644
|
| --- a/chrome/browser/history/history_backend.cc
|
| +++ b/chrome/browser/history/history_backend.cc
|
| @@ -583,7 +583,7 @@ void HistoryBackend::InitImpl(const std::string& languages) {
|
|
|
| // Thumbnail database.
|
| thumbnail_db_.reset(new ThumbnailDatabase());
|
| - if (history::TopSites::IsEnabled() && !db_->GetNeedsThumbnailMigration()) {
|
| + if (!db_->GetNeedsThumbnailMigration()) {
|
| // No convertion needed - use new filename right away.
|
| thumbnail_name = GetFaviconsFileName();
|
| }
|
| @@ -598,7 +598,7 @@ void HistoryBackend::InitImpl(const std::string& languages) {
|
| thumbnail_db_.reset();
|
| }
|
|
|
| - if (history::TopSites::IsEnabled() && db_->GetNeedsThumbnailMigration()) {
|
| + if (db_->GetNeedsThumbnailMigration()) {
|
| VLOG(1) << "Starting TopSites migration";
|
| delegate_->StartTopSitesMigration();
|
| }
|
|
|