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

Unified Diff: components/password_manager/core/browser/password_reuse_detection_manager_unittest.cc

Issue 2846023003: Creating a preference for storing a sync password hash. (Closed)
Patch Set: Reviewer's comments addressed 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/password_manager/core/browser/password_reuse_detection_manager_unittest.cc
diff --git a/components/password_manager/core/browser/password_reuse_detection_manager_unittest.cc b/components/password_manager/core/browser/password_reuse_detection_manager_unittest.cc
index 3dadcc79450071416213c10f7bbe0dbeb82f7603..d166a5b6a856055f9c9e05787f2a0580e648038f 100644
--- a/components/password_manager/core/browser/password_reuse_detection_manager_unittest.cc
+++ b/components/password_manager/core/browser/password_reuse_detection_manager_unittest.cc
@@ -39,7 +39,7 @@ class PasswordReuseDetectionManagerTest : public ::testing::Test {
PasswordReuseDetectionManagerTest() {}
void SetUp() override {
store_ = new testing::StrictMock<MockPasswordStore>;
- CHECK(store_->Init(syncer::SyncableService::StartSyncFlare()));
+ CHECK(store_->Init(syncer::SyncableService::StartSyncFlare(), nullptr));
}
void TearDown() override {
store_->ShutdownOnUIThread();

Powered by Google App Engine
This is Rietveld 408576698