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

Unified Diff: chrome/browser/password_manager/test_password_store_service.cc

Issue 183223003: Add StartSyncFlare to PasswordSyncableService (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge with trunk Created 6 years, 9 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: chrome/browser/password_manager/test_password_store_service.cc
diff --git a/chrome/browser/password_manager/test_password_store_service.cc b/chrome/browser/password_manager/test_password_store_service.cc
index 754eeb9747729a9d8a78100e8d142fce41c8a12d..64787a95da97dddf3a3168a5058dfe445530a597 100644
--- a/chrome/browser/password_manager/test_password_store_service.cc
+++ b/chrome/browser/password_manager/test_password_store_service.cc
@@ -10,7 +10,7 @@
BrowserContextKeyedService* TestPasswordStoreService::Build(
content::BrowserContext* /*profile*/) {
scoped_refptr<PasswordStore> store(new TestPasswordStore);
- if (!store || !store->Init())
+ if (!store || !store->Init(syncer::SyncableService::StartSyncFlare()))
return NULL;
return new TestPasswordStoreService(store);
}

Powered by Google App Engine
This is Rietveld 408576698