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

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

Issue 10600013: Wired support for file truncating with RemoteFileSystemOperation::OpenFile() method (case when base… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 6 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/chromeos/fileapi/remote_file_system_proxy.h
diff --git a/webkit/chromeos/fileapi/remote_file_system_proxy.h b/webkit/chromeos/fileapi/remote_file_system_proxy.h
index 95f9325e69f1e643a3f089164a23c87c6fb1c723..ba8c37aa4b51beecb813fb9e0d97d7fb7f3f6bef 100644
--- a/webkit/chromeos/fileapi/remote_file_system_proxy.h
+++ b/webkit/chromeos/fileapi/remote_file_system_proxy.h
@@ -92,6 +92,12 @@ class RemoteFileSystemProxyInterface :
int flags,
base::ProcessHandle peer_handle,
const FileSystemOperationInterface::OpenFileCallback& callback) = 0;
+
+ // Notifies file system than file at |path| has been closed.
+ virtual void NotifyFileClosed(
+ const GURL& path,
+ const FileSystemOperationInterface::StatusCallback& callback) = 0;
+
// TODO(zelidrag): More methods to follow as we implement other parts of FSO.
protected:

Powered by Google App Engine
This is Rietveld 408576698