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

Unified Diff: extensions/browser/file_reader_unittest.cc

Issue 19579005: Move ReadFileToString to the base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 months 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
« no previous file with comments | « extensions/browser/file_reader.cc ('k') | gpu/config/gpu_info_collector_x11.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/file_reader_unittest.cc
diff --git a/extensions/browser/file_reader_unittest.cc b/extensions/browser/file_reader_unittest.cc
index 17a466ca4c13ef8b8721cc88042478127b8f08a0..120ad669e8d5234144de86e40e2575d7d2f3dfc7 100644
--- a/extensions/browser/file_reader_unittest.cc
+++ b/extensions/browser/file_reader_unittest.cc
@@ -61,7 +61,7 @@ void RunBasicTest(const char* filename) {
path = path.AppendASCII(filename);
std::string file_contents;
- ASSERT_TRUE(file_util::ReadFileToString(path, &file_contents));
+ ASSERT_TRUE(base::ReadFileToString(path, &file_contents));
Receiver receiver;
« no previous file with comments | « extensions/browser/file_reader.cc ('k') | gpu/config/gpu_info_collector_x11.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698