| Index: chrome/browser/password_manager/chrome_password_manager_client.cc
|
| diff --git a/chrome/browser/password_manager/chrome_password_manager_client.cc b/chrome/browser/password_manager/chrome_password_manager_client.cc
|
| index f5604c40af73aab566eaae846565872c5db21f90..a69d75cc400baba6de89d137f20963f192f4d326 100644
|
| --- a/chrome/browser/password_manager/chrome_password_manager_client.cc
|
| +++ b/chrome/browser/password_manager/chrome_password_manager_client.cc
|
| @@ -266,9 +266,10 @@ password_manager::PasswordStore*
|
| ChromePasswordManagerClient::GetPasswordStore() {
|
| // Always use EXPLICIT_ACCESS as the password manager checks IsOffTheRecord
|
| // itself when it shouldn't access the PasswordStore.
|
| - // TODO(gcasto): Is is safe to change this to Profile::IMPLICIT_ACCESS?
|
| - return PasswordStoreFactory::GetForProfile(profile_, Profile::EXPLICIT_ACCESS)
|
| - .get();
|
| + // TODO(gcasto): Is is safe to change this to
|
| + // ServiceAccessType::IMPLICIT_ACCESS?
|
| + return PasswordStoreFactory::GetForProfile(
|
| + profile_, ServiceAccessType::EXPLICIT_ACCESS).get();
|
| }
|
|
|
| base::FieldTrial::Probability
|
|
|