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

Unified Diff: trunk/src/chrome/browser/parsers/metadata_parser_manager.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/parsers/metadata_parser_manager.cc
===================================================================
--- trunk/src/chrome/browser/parsers/metadata_parser_manager.cc (revision 239399)
+++ trunk/src/chrome/browser/parsers/metadata_parser_manager.cc (working copy)
@@ -39,7 +39,7 @@
char buffer[kAmountToRead];
int amount_read = 0;
DLOG(ERROR) << path.value();
- amount_read = base::ReadFile(path, buffer, sizeof(buffer));
+ amount_read = file_util::ReadFile(path, buffer, sizeof(buffer));
if (amount_read <= 0) {
DLOG(ERROR) << "Unable to read file";
return NULL;
« no previous file with comments | « trunk/src/chrome/browser/net/net_log_temp_file.cc ('k') | trunk/src/chrome/browser/safe_browsing/prefix_set.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698