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

Unified Diff: trunk/src/chrome/browser/chromeos/policy/enterprise_install_attributes.cc

Issue 105823009: Revert 239280 "Move more file_util functions to base namespace." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: Created 7 years 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
Index: trunk/src/chrome/browser/chromeos/policy/enterprise_install_attributes.cc
===================================================================
--- trunk/src/chrome/browser/chromeos/policy/enterprise_install_attributes.cc (revision 239399)
+++ trunk/src/chrome/browser/chromeos/policy/enterprise_install_attributes.cc (working copy)
@@ -107,7 +107,7 @@
device_locked_ = true;
char buf[16384];
- int len = base::ReadFile(cache_file, buf, sizeof(buf));
+ int len = file_util::ReadFile(cache_file, buf, sizeof(buf));
if (len == -1 || len >= static_cast<int>(sizeof(buf))) {
PLOG(ERROR) << "Failed to read " << cache_file.value();
return;

Powered by Google App Engine
This is Rietveld 408576698