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

Unified Diff: chrome/browser/password_manager/password_store_mac.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/password_store_mac.cc
diff --git a/chrome/browser/password_manager/password_store_mac.cc b/chrome/browser/password_manager/password_store_mac.cc
index 0cac949fd950591c84a1249daaf00b436e86c2d5..4c3af350fbbb781ac7f7ab490050ea1d8cb0e0c5 100644
--- a/chrome/browser/password_manager/password_store_mac.cc
+++ b/chrome/browser/password_manager/password_store_mac.cc
@@ -838,14 +838,15 @@ PasswordStoreMac::PasswordStoreMac(
PasswordStoreMac::~PasswordStoreMac() {}
-bool PasswordStoreMac::Init() {
+bool PasswordStoreMac::Init(
+ const syncer::SyncableService::StartSyncFlare& flare) {
thread_.reset(new base::Thread("Chrome_PasswordStore_Thread"));
if (!thread_->Start()) {
thread_.reset(NULL);
return false;
}
- return PasswordStore::Init();
+ return PasswordStore::Init(flare);
}
// Mac stores passwords in the system keychain, which can block for an
« no previous file with comments | « chrome/browser/password_manager/password_store_mac.h ('k') | chrome/browser/password_manager/password_store_mac_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698