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

Unified Diff: components/variations/variations_associated_data.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
« no previous file with comments | « components/variations/study_filtering.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/variations/variations_associated_data.cc
diff --git a/components/variations/variations_associated_data.cc b/components/variations/variations_associated_data.cc
index ff330b0c878c1fbe1bfacd2d630b923a550f514a..d257d01999f0619e18ee76ff39a294e4b166bd1a 100644
--- a/components/variations/variations_associated_data.cc
+++ b/components/variations/variations_associated_data.cc
@@ -128,7 +128,7 @@ class VariationsParamAssociator {
return false;
const VariationKey key(trial_name, group_name);
- if (ContainsKey(variation_params_, key))
+ if (base::ContainsKey(variation_params_, key))
return false;
variation_params_[key] = params;
@@ -142,7 +142,7 @@ class VariationsParamAssociator {
const std::string group_name =
base::FieldTrialList::FindFullName(trial_name);
const VariationKey key(trial_name, group_name);
- if (!ContainsKey(variation_params_, key))
+ if (!base::ContainsKey(variation_params_, key))
return false;
*params = variation_params_[key];
« no previous file with comments | « components/variations/study_filtering.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698