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

Unified Diff: webkit/fileapi/file_system_operation.cc

Issue 10541113: Notify CloseFile from Pepper to FileSystem. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added renderer-close check. 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/fileapi/file_system_operation.cc
diff --git a/webkit/fileapi/file_system_operation.cc b/webkit/fileapi/file_system_operation.cc
index 4265b6f71924571e71c765b39d547dd28083d77a..189e18940ac7624e7abcb68bae18a6a6be517053 100644
--- a/webkit/fileapi/file_system_operation.cc
+++ b/webkit/fileapi/file_system_operation.cc
@@ -399,6 +399,11 @@ void FileSystemOperation::OpenFile(const GURL& path_url,
base::kNullProcessHandle));
}
+void FileSystemOperation::NotifyCloseFile(const GURL& path) {
+ // No particular task to do. This method is for remote file systems that
+ // need synchronization with remote server.
kinuko 2012/06/25 11:46:54 Should we delete this here?
kinaba 2012/06/26 00:15:10 True. Done.
+}
+
// We can only get here on a write or truncate that's not yet completed.
// We don't support cancelling any other operation at this time.
void FileSystemOperation::Cancel(const StatusCallback& cancel_callback) {

Powered by Google App Engine
This is Rietveld 408576698