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 aa76685704c52c9b6f4c05fac51e385e59025bad..5220a40ca9a7d296821fd1b28f4932000ba728cf 100644 |
--- a/chrome/browser/automation/testing_automation_provider.cc |
+++ b/chrome/browser/automation/testing_automation_provider.cc |
@@ -3420,7 +3420,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); |
@@ -3463,7 +3463,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); |
@@ -3479,7 +3479,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( |