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 091e1fc..31ba010 100644
--- a/chromeos/system/name_value_pairs_parser.cc
+++ b/chromeos/system/name_value_pairs_parser.cc
@@ -123,7 +123,7 @@ bool NameValuePairsParser::GetNameValuePairsFromFile(
const std::string& eq,
const std::string& delim) {
std::string contents;
- if (file_util::ReadFileToString(file_path, &contents)) {
+ if (base::ReadFileToString(file_path, &contents)) {
return ParseNameValuePairs(contents, eq, delim);
} else {
LOG(WARNING) << "Unable to read statistics file: " << file_path.value();