Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(35)

Unified Diff: chrome/browser/safe_browsing/bloom_filter.h

Issue 5513002: Temporarily increase the safe-browsing bloom filter size. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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|.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698