| Index: chrome/browser/automation/testing_automation_provider.cc
|
| diff --git a/chrome/browser/automation/testing_automation_provider.cc b/chrome/browser/automation/testing_automation_provider.cc
|
| index e36d655199dae216bf32dda9ae976ba35daef9a8..e289e9690bbd8bf45d959f6fe2dbec1864c34b2f 100644
|
| --- a/chrome/browser/automation/testing_automation_provider.cc
|
| +++ b/chrome/browser/automation/testing_automation_provider.cc
|
| @@ -3435,7 +3435,7 @@ void TestingAutomationProvider::AddSavedPassword(
|
| GetPasswordFormFromDict(*password_dict);
|
|
|
| Profile* profile = browser->profile();
|
| - // Use IMPLICIT_ACCESS since new passwords aren't added off the record.
|
| + // Use IMPLICIT_ACCESS since new passwords aren't added in incognito mode.
|
| PasswordStore* password_store =
|
| profile->GetPasswordStore(Profile::IMPLICIT_ACCESS);
|
|
|
| @@ -3478,7 +3478,7 @@ void TestingAutomationProvider::RemoveSavedPassword(
|
| GetPasswordFormFromDict(*password_dict);
|
|
|
| Profile* profile = browser->profile();
|
| - // Use EXPLICIT_ACCESS since passwords can be removed off the record.
|
| + // Use EXPLICIT_ACCESS since passwords can be removed in incognito mode.
|
| PasswordStore* password_store =
|
| profile->GetPasswordStore(Profile::EXPLICIT_ACCESS);
|
|
|
| @@ -3494,7 +3494,7 @@ void TestingAutomationProvider::GetSavedPasswords(
|
| DictionaryValue* args,
|
| IPC::Message* reply_message) {
|
| Profile* profile = browser->profile();
|
| - // Use EXPLICIT_ACCESS since saved passwords can be retreived off the record.
|
| + // Use EXPLICIT_ACCESS since saved passwords can be retreived in incognito mode.
|
| PasswordStore* password_store =
|
| profile->GetPasswordStore(Profile::EXPLICIT_ACCESS);
|
| password_store->GetAutofillableLogins(
|
|
|