Index: chrome/browser/history/in_memory_url_index.cc |
diff --git a/chrome/browser/history/in_memory_url_index.cc b/chrome/browser/history/in_memory_url_index.cc |
index eb03b95ddbf0f04f4741013f78dec4250e62c6ab..384322f8e594823eea2bbaf756a61c408b9cea0d 100644 |
--- a/chrome/browser/history/in_memory_url_index.cc |
+++ b/chrome/browser/history/in_memory_url_index.cc |
@@ -115,14 +115,20 @@ 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) { |
+ cached_at_shutdown_(false), |
+ pre_filter_item_count(0), |
+ post_filter_item_count(0), |
+ post_scoring_item_count(0) { |
InMemoryURLIndex::InitializeSchemeWhitelist(&scheme_whitelist_); |
} |
// Called only by unit tests. |
InMemoryURLIndex::InMemoryURLIndex() |
: private_data_(new URLIndexPrivateData), |
- cached_at_shutdown_(false) { |
+ cached_at_shutdown_(false), |
+ pre_filter_item_count(0), |
+ post_filter_item_count(0), |
+ post_scoring_item_count(0) { |
InMemoryURLIndex::InitializeSchemeWhitelist(&scheme_whitelist_); |
} |