Index: webkit/browser/fileapi/file_system_operation_runner.h |
diff --git a/webkit/browser/fileapi/file_system_operation_runner.h b/webkit/browser/fileapi/file_system_operation_runner.h |
index 3b36c4333f74f4b8dc525a7e997bfe4a6f71b180..9543908a3b1419f3525865b1735df505cbce4a7e 100644 |
--- a/webkit/browser/fileapi/file_system_operation_runner.h |
+++ b/webkit/browser/fileapi/file_system_operation_runner.h |
@@ -11,6 +11,7 @@ |
#include "base/id_map.h" |
#include "base/memory/scoped_ptr.h" |
#include "base/memory/weak_ptr.h" |
+#include "webkit/browser/blob/blob_data_handle.h" |
#include "webkit/browser/fileapi/file_system_operation.h" |
#include "webkit/browser/fileapi/file_system_url.h" |
#include "webkit/browser/webkit_storage_browser_export.h" |
@@ -97,10 +98,10 @@ class WEBKIT_STORAGE_BROWSER_EXPORT FileSystemOperationRunner |
const StatusCallback& callback); |
// Writes contents of |blob_url| to |url| at |offset|. |
- // |url_request_context| is used to read contents in |blob_url|. |
+ // |url_request_context| is used to read contents in |blob|. |
OperationID Write(const net::URLRequestContext* url_request_context, |
const FileSystemURL& url, |
- const GURL& blob_url, |
+ scoped_ptr<webkit_blob::BlobDataHandle> blob, |
int64 offset, |
const WriteCallback& callback); |