Chromium Code Reviews| Index: content/child/fileapi/file_system_dispatcher.h |
| diff --git a/content/child/fileapi/file_system_dispatcher.h b/content/child/fileapi/file_system_dispatcher.h |
| index e0260fda17e2274f9e30bf3c457f4b81c5e76e8c..b1117623c5904e830c071a92fc9b1dac517bcdd6 100644 |
| --- a/content/child/fileapi/file_system_dispatcher.h |
| +++ b/content/child/fileapi/file_system_dispatcher.h |
| @@ -100,12 +100,19 @@ class FileSystemDispatcher : public IPC::Listener { |
| int64 offset, |
| int* request_id_out, |
| const StatusCallback& callback); |
| - void Write(const GURL& path, |
| + void WriteDeprecated( |
| + const GURL& path, |
| const GURL& blob_url, |
| int64 offset, |
| int* request_id_out, |
| const WriteCallback& success_callback, |
| const StatusCallback& error_callback); |
|
kinuko
2013/08/21 10:22:20
nit: indent looks weird
michaeln
2013/08/27 23:24:06
Done.
|
| + void Write(const GURL& path, |
| + const std::string& blob_id, |
| + int64 offset, |
| + int* request_id_out, |
| + const WriteCallback& success_callback, |
| + const StatusCallback& error_callback); |
| void Cancel(int request_id_to_cancel, |
| const StatusCallback& callback); |
| void TouchFile(const GURL& file_path, |