diff options
Diffstat (limited to 'chrome/browser/safe_browsing/safe_browsing_database.cc')
-rw-r--r-- | chrome/browser/safe_browsing/safe_browsing_database.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/safe_browsing/safe_browsing_database.cc b/chrome/browser/safe_browsing/safe_browsing_database.cc index 6304a39..c969b66 100644 --- a/chrome/browser/safe_browsing/safe_browsing_database.cc +++ b/chrome/browser/safe_browsing/safe_browsing_database.cc @@ -427,7 +427,7 @@ SafeBrowsingDatabaseNew::SafeBrowsingDatabaseNew() download_store_(NULL), csd_whitelist_store_(NULL), download_whitelist_store_(NULL), - ALLOW_THIS_IN_INITIALIZER_LIST(reset_factory_(this)), + reset_factory_(this), corruption_detected_(false), change_detected_(false) { DCHECK(browse_store_.get()); @@ -449,7 +449,7 @@ SafeBrowsingDatabaseNew::SafeBrowsingDatabaseNew( csd_whitelist_store_(csd_whitelist_store), download_whitelist_store_(download_whitelist_store), extension_blacklist_store_(extension_blacklist_store), - ALLOW_THIS_IN_INITIALIZER_LIST(reset_factory_(this)), + reset_factory_(this), corruption_detected_(false) { DCHECK(browse_store_.get()); } |