| Index: chrome/browser/password_manager/password_store_factory.cc
|
| diff --git a/chrome/browser/password_manager/password_store_factory.cc b/chrome/browser/password_manager/password_store_factory.cc
|
| index 75a2bca79651542543f1a38639ca993cd0ecda6c..12d157fa3a56518b925adcdcc5c4df3ac8c8c241 100644
|
| --- a/chrome/browser/password_manager/password_store_factory.cc
|
| +++ b/chrome/browser/password_manager/password_store_factory.cc
|
| @@ -8,6 +8,7 @@
|
| #include "base/environment.h"
|
| #include "base/prefs/pref_service.h"
|
| #include "chrome/browser/profiles/incognito_helpers.h"
|
| +#include "chrome/browser/sync/glue/sync_start_util.h"
|
| #include "chrome/browser/webdata/web_data_service.h"
|
| #include "chrome/browser/webdata/web_data_service_factory.h"
|
| #include "chrome/common/chrome_constants.h"
|
| @@ -220,7 +221,8 @@ BrowserContextKeyedService* PasswordStoreFactory::BuildServiceInstanceFor(
|
| #else
|
| NOTIMPLEMENTED();
|
| #endif
|
| - if (!ps || !ps->Init()) {
|
| + if (!ps || !ps->Init(
|
| + sync_start_util::GetFlareForSyncableService(profile->GetPath()))) {
|
| NOTREACHED() << "Could not initialize password manager.";
|
| return NULL;
|
| }
|
|
|