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

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

Issue 289003006: Remove stray platform_file.h from webkit (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Android build Created 6 years, 7 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.cc
diff --git a/webkit/browser/fileapi/local_file_stream_writer.cc b/webkit/browser/fileapi/local_file_stream_writer.cc
index a6c6a51eee3ee099484a10409680c896c575bd24..22864c0ef129a1be7248729ca08106d601de321e 100644
--- a/webkit/browser/fileapi/local_file_stream_writer.cc
+++ b/webkit/browser/fileapi/local_file_stream_writer.cc
@@ -14,12 +14,12 @@ namespace fileapi {
namespace {
-const int kOpenFlagsForWrite = base::PLATFORM_FILE_OPEN |
- base::PLATFORM_FILE_WRITE |
- base::PLATFORM_FILE_ASYNC;
-const int kCreateFlagsForWrite = base::PLATFORM_FILE_CREATE |
- base::PLATFORM_FILE_WRITE |
- base::PLATFORM_FILE_ASYNC;
+const int kOpenFlagsForWrite = base::File::FLAG_OPEN |
+ base::File::FLAG_WRITE |
+ base::File::FLAG_ASYNC;
+const int kCreateFlagsForWrite = base::File::FLAG_CREATE |
+ base::File::FLAG_WRITE |
+ base::File::FLAG_ASYNC;
} // namespace
« no previous file with comments | « webkit/browser/fileapi/local_file_stream_writer.h ('k') | webkit/browser/fileapi/quota/open_file_handle_context.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698