Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4603)

Unified Diff: chrome/browser/automation/testing_automation_provider.cc

Issue 6635032: Removing references to off the record in comments and log messages. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fix issues pointed out by code reviewer Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/automation/automation_provider.cc ('k') | chrome/browser/background_contents_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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(
« no previous file with comments | « chrome/browser/automation/automation_provider.cc ('k') | chrome/browser/background_contents_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698