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

Unified Diff: webkit/fileapi/local_file_system_operation.h

Issue 11043015: Merge 158784 - Send OnModifyFile Notification when File Write completes successfully or fails but s… (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/file_writer_delegate_unittest.cc ('k') | webkit/fileapi/local_file_system_operation.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/fileapi/local_file_system_operation.h
===================================================================
--- webkit/fileapi/local_file_system_operation.h (revision 159825)
+++ webkit/fileapi/local_file_system_operation.h (working copy)
@@ -20,6 +20,7 @@
#include "webkit/fileapi/file_system_operation_context.h"
#include "webkit/fileapi/file_system_types.h"
#include "webkit/fileapi/file_system_url.h"
+#include "webkit/fileapi/file_writer_delegate.h"
#include "webkit/fileapi/fileapi_export.h"
#include "webkit/quota/quota_manager.h"
@@ -214,9 +215,10 @@
base::PlatformFileError rv,
const std::vector<base::FileUtilProxy::Entry>& entries,
bool has_more);
- void DidWrite(base::PlatformFileError rv,
+ void DidWrite(const FileSystemURL& url,
+ base::PlatformFileError rv,
int64 bytes,
- bool complete);
+ FileWriterDelegate::WriteProgressStatus write_status);
void DidTouchFile(const StatusCallback& callback,
base::PlatformFileError rv);
void DidOpenFile(const OpenFileCallback& callback,
« no previous file with comments | « webkit/fileapi/file_writer_delegate_unittest.cc ('k') | webkit/fileapi/local_file_system_operation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698