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

Unified Diff: webkit/support/test_webkit_platform_support.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 | « webkit/browser/fileapi/sandbox_isolated_origin_database_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/support/test_webkit_platform_support.cc
diff --git a/webkit/support/test_webkit_platform_support.cc b/webkit/support/test_webkit_platform_support.cc
index 276a10e77bcd3fd00209d02c02e9e16eeb774575..ae0a7e583097c5318c1a4bc1a7a3f093d68116f7 100644
--- a/webkit/support/test_webkit_platform_support.cc
+++ b/webkit/support/test_webkit_platform_support.cc
@@ -314,7 +314,7 @@ WebKit::WebData TestWebKitPlatformSupport::readFromFile(
base::FilePath file_path = base::FilePath::FromUTF16Unsafe(path);
std::string buffer;
- file_util::ReadFileToString(file_path, &buffer);
+ base::ReadFileToString(file_path, &buffer);
return WebKit::WebData(buffer.data(), buffer.size());
}
« no previous file with comments | « webkit/browser/fileapi/sandbox_isolated_origin_database_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698