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

Unified Diff: components/safe_browsing/password_protection/password_protection_service_unittest.cc

Issue 2812113004: Write last_modified date to Content Settings in the PrefProvider (Closed)
Patch Set: rebase Created 3 years, 8 months 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
Index: components/safe_browsing/password_protection/password_protection_service_unittest.cc
diff --git a/components/safe_browsing/password_protection/password_protection_service_unittest.cc b/components/safe_browsing/password_protection/password_protection_service_unittest.cc
index d58d375dc84dc1143926bca0127d4fc35e3351f2..3691dc31b18aef8c2318667784cadf5a68638701 100644
--- a/components/safe_browsing/password_protection/password_protection_service_unittest.cc
+++ b/components/safe_browsing/password_protection/password_protection_service_unittest.cc
@@ -132,7 +132,8 @@ class PasswordProtectionServiceTest : public testing::Test {
void SetUp() override {
HostContentSettingsMap::RegisterProfilePrefs(test_pref_service_.registry());
content_setting_map_ = new HostContentSettingsMap(
- &test_pref_service_, false /* incognito */, false /* guest_profile */);
+ &test_pref_service_, false /* incognito */, false /* guest_profile */,
+ false /* store_last_modified */);
database_manager_ = new MockSafeBrowsingDatabaseManager();
dummy_request_context_getter_ = new DummyURLRequestContextGetter();
password_protection_service_ =

Powered by Google App Engine
This is Rietveld 408576698