diff options
Diffstat (limited to 'chrome/browser/history/in_memory_url_index.cc')
-rw-r--r-- | chrome/browser/history/in_memory_url_index.cc | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/chrome/browser/history/in_memory_url_index.cc b/chrome/browser/history/in_memory_url_index.cc index 384322f8..eb03b95 100644 --- a/chrome/browser/history/in_memory_url_index.cc +++ b/chrome/browser/history/in_memory_url_index.cc @@ -115,20 +115,14 @@ int ScoreForValue(int value, const int* value_ranks) { InMemoryURLIndex::InMemoryURLIndex(const FilePath& history_dir) : history_dir_(history_dir), private_data_(new URLIndexPrivateData), - cached_at_shutdown_(false), - pre_filter_item_count(0), - post_filter_item_count(0), - post_scoring_item_count(0) { + cached_at_shutdown_(false) { InMemoryURLIndex::InitializeSchemeWhitelist(&scheme_whitelist_); } // Called only by unit tests. InMemoryURLIndex::InMemoryURLIndex() : private_data_(new URLIndexPrivateData), - cached_at_shutdown_(false), - pre_filter_item_count(0), - post_filter_item_count(0), - post_scoring_item_count(0) { + cached_at_shutdown_(false) { InMemoryURLIndex::InitializeSchemeWhitelist(&scheme_whitelist_); } |