| Index: chrome/browser/chromeos/policy/enterprise_install_attributes.cc
|
| diff --git a/chrome/browser/chromeos/policy/enterprise_install_attributes.cc b/chrome/browser/chromeos/policy/enterprise_install_attributes.cc
|
| index 278309d8659966947248cf8377ec6f41b42d6413..7c96eb8023ffa328d17b7f2505fa21dd7ce3a6d9 100644
|
| --- a/chrome/browser/chromeos/policy/enterprise_install_attributes.cc
|
| +++ b/chrome/browser/chromeos/policy/enterprise_install_attributes.cc
|
| @@ -107,7 +107,7 @@ void EnterpriseInstallAttributes::ReadCacheFile(
|
| device_locked_ = true;
|
|
|
| char buf[16384];
|
| - int len = file_util::ReadFile(cache_file, buf, sizeof(buf));
|
| + int len = base::ReadFile(cache_file, buf, sizeof(buf));
|
| if (len == -1 || len >= static_cast<int>(sizeof(buf))) {
|
| PLOG(ERROR) << "Failed to read " << cache_file.value();
|
| return;
|
|
|