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 0eb1a3bc95301119eb5b824e510cba8c8c58224c..aa05796e6f5d7a2cb2a50b1ff800d9fcf4ef4192 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" |
@@ -95,10 +96,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); |