Chromium Code Reviews

Unified Diff: courgette/base_test_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.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « content/test/net/url_request_mock_http_job.cc ('k') | courgette/courgette_tool.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: courgette/base_test_unittest.cc
diff --git a/courgette/base_test_unittest.cc b/courgette/base_test_unittest.cc
index 9565536ae3430b5ff97385ab1e653967a1e34da6..9a62868d9493af34c9aa66ecb0c4205cd56ecdf2 100644
--- a/courgette/base_test_unittest.cc
+++ b/courgette/base_test_unittest.cc
@@ -22,7 +22,7 @@ std::string BaseTest::FileContents(const char* file_name) const {
file_path = file_path.AppendASCII(file_name);
std::string file_bytes;
- EXPECT_TRUE(file_util::ReadFileToString(file_path, &file_bytes));
+ EXPECT_TRUE(base::ReadFileToString(file_path, &file_bytes));
return file_bytes;
}
« no previous file with comments | « content/test/net/url_request_mock_http_job.cc ('k') | courgette/courgette_tool.cc » ('j') | no next file with comments »

Powered by Google App Engine