| Index: chrome/browser/sync/test/integration/passwords_helper.cc
|
| diff --git a/chrome/browser/sync/test/integration/passwords_helper.cc b/chrome/browser/sync/test/integration/passwords_helper.cc
|
| index 3f489d35c41d594270849c3f912b13de72c0f54d..e72133f198d6930c34778c0ade2ff1f74bd508e5 100644
|
| --- a/chrome/browser/sync/test/integration/passwords_helper.cc
|
| +++ b/chrome/browser/sync/test/integration/passwords_helper.cc
|
| @@ -128,12 +128,12 @@ bool SetDecryptionPassphrase(int index, const std::string& passphrase) {
|
|
|
| PasswordStore* GetPasswordStore(int index) {
|
| return PasswordStoreFactory::GetForProfile(test()->GetProfile(index),
|
| - Profile::IMPLICIT_ACCESS);
|
| + Profile::IMPLICIT_ACCESS).get();
|
| }
|
|
|
| PasswordStore* GetVerifierPasswordStore() {
|
| return PasswordStoreFactory::GetForProfile(test()->verifier(),
|
| - Profile::IMPLICIT_ACCESS);
|
| + Profile::IMPLICIT_ACCESS).get();
|
| }
|
|
|
| bool ProfileContainsSamePasswordFormsAsVerifier(int index) {
|
|
|