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

Unified Diff: trunk/src/content/test/weburl_loader_mock_factory.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/content/test/weburl_loader_mock_factory.cc
===================================================================
--- trunk/src/content/test/weburl_loader_mock_factory.cc (revision 239399)
+++ trunk/src/content/test/weburl_loader_mock_factory.cc (working copy)
@@ -182,7 +182,7 @@
int size = static_cast<int>(file_size);
scoped_ptr<char[]> buffer(new char[size]);
data->reset();
- int read_count = base::ReadFile(file_path, buffer.get(), size);
+ int read_count = file_util::ReadFile(file_path, buffer.get(), size);
if (read_count == -1)
return false;
DCHECK(read_count == size);

Powered by Google App Engine
This is Rietveld 408576698