Index: webkit/fileapi/file_system_operation.cc |
diff --git a/webkit/fileapi/file_system_operation.cc b/webkit/fileapi/file_system_operation.cc |
index 46d4ceea34d23ed7665130a5978df599cb653c28..4ab97ef8a8d6520f5ac06e042eaa78d62b81478d 100644 |
--- a/webkit/fileapi/file_system_operation.cc |
+++ b/webkit/fileapi/file_system_operation.cc |
@@ -383,6 +383,12 @@ void FileSystemOperation::OpenFile(const FileSystemURL& url, |
base::kNullProcessHandle)); |
} |
+void FileSystemOperation::NotifyCloseFile(const FileSystemURL& url) { |
+ // No particular task to do. This method is for remote file systems that |
+ // need synchronization with remote server. |
+ delete this; |
+} |
+ |
// 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) { |