Chromium Code Reviews| 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..fffcb1077262e76efd4d034e5eaab7afbe401330 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 incognito. |
|
akalin
2011/03/08 03:07:47
this becomes awkward phrasing; maybe "added in inc
|
| 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 incognito. |
|
akalin
2011/03/08 03:07:47
here, too
|
| 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 incognito. |
|
akalin
2011/03/08 03:07:47
here, too
|
| PasswordStore* password_store = |
| profile->GetPasswordStore(Profile::EXPLICIT_ACCESS); |
| password_store->GetAutofillableLogins( |