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

Unified Diff: chromeos/system/name_value_pairs_parser.cc

Issue 2229383003: chromeos: Use stl utilities from the base namespace (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased 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 | « chromeos/settings/timezone_settings_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/system/name_value_pairs_parser.cc
diff --git a/chromeos/system/name_value_pairs_parser.cc b/chromeos/system/name_value_pairs_parser.cc
index 2bf34b682f1b7d9fba88974fd1a3dacb023374d0..d037aa80d7e64a44979afb4598f9c5448519da41 100644
--- a/chromeos/system/name_value_pairs_parser.cc
+++ b/chromeos/system/name_value_pairs_parser.cc
@@ -48,7 +48,7 @@ NameValuePairsParser::NameValuePairsParser(NameValueMap* map)
void NameValuePairsParser::AddNameValuePair(const std::string& key,
const std::string& value) {
- if (!ContainsKey(*map_, key)) {
+ if (!base::ContainsKey(*map_, key)) {
(*map_)[key] = value;
VLOG(1) << "name: " << key << ", value: " << value;
} else {
« no previous file with comments | « chromeos/settings/timezone_settings_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698