summaryrefslogtreecommitdiffstats
path: root/chromeos/system
diff options
context:
space:
mode:
Diffstat (limited to 'chromeos/system')
-rw-r--r--chromeos/system/name_value_pairs_parser.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chromeos/system/name_value_pairs_parser.cc b/chromeos/system/name_value_pairs_parser.cc
index b5e11f4..efa5779 100644
--- a/chromeos/system/name_value_pairs_parser.cc
+++ b/chromeos/system/name_value_pairs_parser.cc
@@ -113,7 +113,7 @@ bool NameValuePairsParser::GetSingleValueFromTool(int argc,
if (!GetToolOutput(argc, argv, output_string))
return false;
- TrimWhitespaceASCII(output_string, TRIM_ALL, &output_string);
+ base::TrimWhitespaceASCII(output_string, base::TRIM_ALL, &output_string);
AddNameValuePair(key, output_string);
return true;
}