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

Unified Diff: chrome/renderer/pepper/pepper_uma_host.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/renderer/pepper/pepper_uma_host.cc
diff --git a/chrome/renderer/pepper/pepper_uma_host.cc b/chrome/renderer/pepper/pepper_uma_host.cc
index 56ef732c6648c20bb7363e113b3b2c360281cea8..417483843899d8ab22b9410f6d384025301814a6 100644
--- a/chrome/renderer/pepper/pepper_uma_host.cc
+++ b/chrome/renderer/pepper/pepper_uma_host.cc
@@ -120,12 +120,12 @@ bool PepperUMAHost::IsHistogramAllowed(const std::string& histogram) {
}
if (IsPluginWhitelisted() &&
- ContainsKey(allowed_histogram_prefixes_, HashPrefix(histogram))) {
+ base::ContainsKey(allowed_histogram_prefixes_, HashPrefix(histogram))) {
return true;
}
- if (ContainsKey(allowed_plugin_base_names_,
- plugin_base_name_.MaybeAsASCII())) {
+ if (base::ContainsKey(allowed_plugin_base_names_,
+ plugin_base_name_.MaybeAsASCII())) {
return true;
}

Powered by Google App Engine
This is Rietveld 408576698