summaryrefslogtreecommitdiffstats
path: root/chromeos/system
diff options
context:
space:
mode:
Diffstat (limited to 'chromeos/system')
-rw-r--r--chromeos/system/name_value_pairs_parser.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chromeos/system/name_value_pairs_parser.cc b/chromeos/system/name_value_pairs_parser.cc
index 31ba010..b5e11f4 100644
--- a/chromeos/system/name_value_pairs_parser.cc
+++ b/chromeos/system/name_value_pairs_parser.cc
@@ -91,8 +91,8 @@ bool NameValuePairsParser::ParseNameValuePairsWithComments(
std::string key;
std::string value;
- TrimString(pair.substr(0, eq_pos), kTrimChars, &key);
- TrimString(pair.substr(eq_pos + 1, value_size), kTrimChars, &value);
+ base::TrimString(pair.substr(0, eq_pos), kTrimChars, &key);
+ base::TrimString(pair.substr(eq_pos + 1, value_size), kTrimChars, &value);
if (!key.empty()) {
AddNameValuePair(key, value);