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

Unified Diff: chrome/browser/file_system/file_system_dispatcher_host.h

Issue 3440021: This is the IPC and bits of the browser backend for FileWriter. The rest of... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 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
Index: chrome/browser/file_system/file_system_dispatcher_host.h
===================================================================
--- chrome/browser/file_system/file_system_dispatcher_host.h (revision 60387)
+++ chrome/browser/file_system/file_system_dispatcher_host.h (working copy)
@@ -17,6 +17,7 @@
#include "webkit/fileapi/file_system_operation.h"
class FileSystemHostContext;
+class GURL;
class HostContentSettingsMap;
class Receiver;
class ResourceMessageFilter;
@@ -49,6 +50,12 @@
bool recursive);
void OnExists(int request_id, const FilePath& path, bool is_directory);
void OnReadDirectory(int request_id, const FilePath& path);
+ void OnWrite(int request_id,
+ const FilePath& path,
+ const GURL& blob_url,
+ int64 offset);
+ void OnTruncate(int request_id, const FilePath& path, int64 length);
+ void OnCancel(int request_id, int request_to_cancel);
void Send(IPC::Message* message);
void RemoveCompletedOperation(int request_id);

Powered by Google App Engine
This is Rietveld 408576698