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

Unified Diff: components/content_settings/core/browser/content_settings_info.cc

Issue 2231753002: components: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: One more call site Created 4 years, 4 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: components/content_settings/core/browser/content_settings_info.cc
diff --git a/components/content_settings/core/browser/content_settings_info.cc b/components/content_settings/core/browser/content_settings_info.cc
index 62e5c685c4f146af6365279f96bacc4f5ca3c9e6..c111944e2860537d8a054e57ce2345cbe5dd948a 100644
--- a/components/content_settings/core/browser/content_settings_info.cc
+++ b/components/content_settings/core/browser/content_settings_info.cc
@@ -21,7 +21,7 @@ ContentSettingsInfo::ContentSettingsInfo(
ContentSettingsInfo::~ContentSettingsInfo() {}
bool ContentSettingsInfo::IsSettingValid(ContentSetting setting) const {
- return ContainsKey(valid_settings_, setting);
+ return base::ContainsKey(valid_settings_, setting);
}
} // namespace content_settings

Powered by Google App Engine
This is Rietveld 408576698