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

Unified Diff: webkit/chromeos/fileapi/remote_file_system_operation.h

Issue 10956064: Send OnModifyFile Notification when File Write Finishes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Kinuko Review #2 Created 8 years, 3 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
diff --git a/webkit/chromeos/fileapi/remote_file_system_operation.h b/webkit/chromeos/fileapi/remote_file_system_operation.h
index b912755b65bc5ff0b0e7b0dd3a51144c9cbb9066..3b517077666b28e1ecb1b3800edf6f0e6ce22289 100644
--- a/webkit/chromeos/fileapi/remote_file_system_operation.h
+++ b/webkit/chromeos/fileapi/remote_file_system_operation.h
@@ -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 @@ namespace chromeos {
// FileSystemOperation implementation for local file systems.
class RemoteFileSystemOperation : public fileapi::FileSystemOperation {
public:
+ typedef fileapi::FileWriterDelegate FileWriterDelegate;
virtual ~RemoteFileSystemOperation();
// FileSystemOperation overrides.
@@ -102,7 +104,7 @@ class RemoteFileSystemOperation : public fileapi::FileSystemOperation {
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