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

Unified Diff: webkit/fileapi/sandbox_file_stream_writer.cc

Issue 11030044: Merge 159454 - Flush at the end of local file writing in FileWriter API. (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1271/src/
Patch Set: Created 8 years, 2 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/fileapi/sandbox_file_stream_writer.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/sandbox_file_stream_writer.cc
===================================================================
--- webkit/fileapi/sandbox_file_stream_writer.cc (revision 160294)
+++ webkit/fileapi/sandbox_file_stream_writer.cc (working copy)
@@ -234,4 +234,10 @@
return true;
}
+int SandboxFileStreamWriter::Flush(const net::CompletionCallback& callback) {
+ // For now, Flush is meaningful only for local native file access. It is no-op
+ // for sandboxed filesystem files (see the discussion in crbug.com/144790).
+ return net::OK;
+}
+
} // namespace fileapi
« no previous file with comments | « webkit/fileapi/sandbox_file_stream_writer.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698