Index: chrome/browser/safe_browsing/bloom_filter.h |
diff --git a/chrome/browser/safe_browsing/bloom_filter.h b/chrome/browser/safe_browsing/bloom_filter.h |
index fd69c0dcfcbf09b837ce1047b36df54cfc2acf10..60cb4fc2e06f4e2acd12ec89e67c6565fa88a79b 100644 |
--- a/chrome/browser/safe_browsing/bloom_filter.h |
+++ b/chrome/browser/safe_browsing/bloom_filter.h |
@@ -58,7 +58,7 @@ class BloomFilter : public base::RefCountedThreadSafe<BloomFilter> { |
// Force a maximum size on the bloom filter to avoid using too much memory |
// (in bytes). |
- static const int kBloomFilterMaxSize = 2 * 1024 * 1024; |
+ static const int kBloomFilterMaxSize = 3 * 1024 * 1024; |
// Use the above constants to calculate an appropriate size to pass |
// to the BloomFilter constructor based on the intended |key_count|. |