diff options
Diffstat (limited to 'chrome/browser/sync/test/integration/passwords_helper.cc')
-rw-r--r-- | chrome/browser/sync/test/integration/passwords_helper.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/sync/test/integration/passwords_helper.cc b/chrome/browser/sync/test/integration/passwords_helper.cc index 3f489d3..e72133f 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) { |