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

Unified Diff: chrome/browser/content_settings/content_settings_base_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
Index: chrome/browser/content_settings/content_settings_base_provider.cc
diff --git a/chrome/browser/content_settings/content_settings_base_provider.cc b/chrome/browser/content_settings/content_settings_base_provider.cc
index b0e7ced8732e37d3b2f2567e228e3e34544f70b4..fdfdc6fc0a4ef03e52612714e7843337ea69d4fa 100644
--- a/chrome/browser/content_settings/content_settings_base_provider.cc
+++ b/chrome/browser/content_settings/content_settings_base_provider.cc
@@ -97,8 +97,8 @@ ContentSetting BaseProvider::GetContentSetting(
requested_setting)->second;
}
- // If this map is not for an off-the-record profile, these searches will never
- // match. The additional off-the-record exceptions always overwrite the
+ // If this map is not for an incognito profile, these searches will never
+ // match. The additional incognito exceptions always overwrite the
// regular ones.
i = off_the_record_settings_.find(host);
if (i != off_the_record_settings_.end() &&
@@ -189,8 +189,8 @@ ContentSettings BaseProvider::GetNonDefaultContentSettings(
if (i != host_content_settings_.end())
output = i->second.content_settings;
- // If this map is not for an off-the-record profile, these searches will never
- // match. The additional off-the-record exceptions always overwrite the
+ // If this map is not for an incognito profile, these searches will never
+ // match. The additional incognito exceptions always overwrite the
// regular ones.
i = off_the_record_settings_.find(host);
if (i != off_the_record_settings_.end()) {

Powered by Google App Engine
This is Rietveld 408576698