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

Unified Diff: webkit/browser/fileapi/local_file_stream_writer_unittest.cc

Issue 184563006: Move WriteFile and WriteFileDescriptor from file_util to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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
Index: webkit/browser/fileapi/local_file_stream_writer_unittest.cc
diff --git a/webkit/browser/fileapi/local_file_stream_writer_unittest.cc b/webkit/browser/fileapi/local_file_stream_writer_unittest.cc
index 96bccf64b2658f8cdb24f6b84465b6e8a90c5d2f..53c559a6e25f98d8e0c3519a2d149fd985f3f153 100644
--- a/webkit/browser/fileapi/local_file_stream_writer_unittest.cc
+++ b/webkit/browser/fileapi/local_file_stream_writer_unittest.cc
@@ -70,7 +70,7 @@ class LocalFileStreamWriterTest : public testing::Test {
base::FilePath CreateFileWithContent(const std::string& name,
const std::string& data) {
base::FilePath path = Path(name);
- file_util::WriteFile(path, data.c_str(), data.size());
+ base::WriteFile(path, data.c_str(), data.size());
return path;
}

Powered by Google App Engine
This is Rietveld 408576698