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

Unified Diff: chrome/common/variations/child_process_field_trial_syncer.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
« no previous file with comments | « chrome/common/component_flash_hint_file_linux.cc ('k') | chrome/renderer/pepper/pepper_uma_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/variations/child_process_field_trial_syncer.cc
diff --git a/chrome/common/variations/child_process_field_trial_syncer.cc b/chrome/common/variations/child_process_field_trial_syncer.cc
index a0ba93913c9682fda63243de7b177f819789a510..d559b1f745edbf8dc38d56d500028723aab86ec9 100644
--- a/chrome/common/variations/child_process_field_trial_syncer.cc
+++ b/chrome/common/variations/child_process_field_trial_syncer.cc
@@ -42,7 +42,7 @@ void ChildProcessFieldTrialSyncer::InitFieldTrialObserving(
base::FieldTrial::ActiveGroups current_active_trials;
base::FieldTrialList::GetActiveFieldTrialGroups(&current_active_trials);
for (const auto& trial : current_active_trials) {
- if (!ContainsKey(initially_active_trials_set, trial.trial_name))
+ if (!base::ContainsKey(initially_active_trials_set, trial.trial_name))
observer_->OnFieldTrialGroupFinalized(trial.trial_name, trial.group_name);
}
}
« no previous file with comments | « chrome/common/component_flash_hint_file_linux.cc ('k') | chrome/renderer/pepper/pepper_uma_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698