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

Unified Diff: webkit/chromeos/fileapi/remote_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 | « no previous file | webkit/chromeos/fileapi/remote_file_system_operation.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/chromeos/fileapi/remote_file_system_operation.h
===================================================================
--- webkit/chromeos/fileapi/remote_file_system_operation.h (revision 159825)
+++ webkit/chromeos/fileapi/remote_file_system_operation.h (working copy)
@@ -7,6 +7,7 @@
#include "webkit/chromeos/fileapi/remote_file_system_proxy.h"
#include "webkit/fileapi/file_system_operation.h"
+#include "webkit/fileapi/file_writer_delegate.h"
namespace base {
class Value;
@@ -22,6 +23,7 @@
// FileSystemOperation implementation for local file systems.
class RemoteFileSystemOperation : public fileapi::FileSystemOperation {
public:
+ typedef fileapi::FileWriterDelegate FileWriterDelegate;
virtual ~RemoteFileSystemOperation();
// FileSystemOperation overrides.
@@ -102,7 +104,7 @@
bool has_more);
void DidWrite(base::PlatformFileError result,
int64 bytes,
- bool complete);
+ FileWriterDelegate::WriteProgressStatus write_status);
void DidFinishFileOperation(const StatusCallback& callback,
base::PlatformFileError rv);
void DidCreateSnapshotFile(
« no previous file with comments | « no previous file | webkit/chromeos/fileapi/remote_file_system_operation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698