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

Unified Diff: chrome/browser/ui/webui/options/content_settings_handler.cc

Issue 2230203002: chrome: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed accidental components/ change 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: chrome/browser/ui/webui/options/content_settings_handler.cc
diff --git a/chrome/browser/ui/webui/options/content_settings_handler.cc b/chrome/browser/ui/webui/options/content_settings_handler.cc
index b3ec85ba3eae39cf88e9e85bb5f1e66b11952755..4649e6484ce4095d68a62841ab65c34c31187cb5 100644
--- a/chrome/browser/ui/webui/options/content_settings_handler.cc
+++ b/chrome/browser/ui/webui/options/content_settings_handler.cc
@@ -722,7 +722,7 @@ void ContentSettingsHandler::OnContentSettingChanged(
UpdateAllExceptionsViewsFromModel();
UpdateAllChooserExceptionsViewsFromModel();
} else {
- if (ContainsKey(GetExceptionsInfoMap(), details.type()))
+ if (base::ContainsKey(GetExceptionsInfoMap(), details.type()))
UpdateExceptionsViewFromModel(details.type());
}
}

Powered by Google App Engine
This is Rietveld 408576698