diff options
Diffstat (limited to 'webkit/blob/blob_storage_controller.h')
-rw-r--r-- | webkit/blob/blob_storage_controller.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/webkit/blob/blob_storage_controller.h b/webkit/blob/blob_storage_controller.h index 1f0b25e..74bc131b 100644 --- a/webkit/blob/blob_storage_controller.h +++ b/webkit/blob/blob_storage_controller.h @@ -10,7 +10,11 @@ #include "base/ref_counted.h" class GURL; +class FilePath; +namespace base { +class Time; +} namespace net { class UploadData; } @@ -41,6 +45,9 @@ class BlobStorageController { BlobData* src_blob_data, uint64 offset, uint64 length); + void AppendFileItem(BlobData* target_blob_data, + const FilePath& file_path, uint64 offset, uint64 length, + const base::Time& expected_modification_time); typedef base::hash_map<std::string, scoped_refptr<BlobData> > BlobMap; BlobMap blob_map_; |