| Index: storage/browser/blob/blob_data_item.h
|
| diff --git a/storage/browser/blob/blob_data_item.h b/storage/browser/blob/blob_data_item.h
|
| index 099415b6e14079698754a61e477d7f426a183e92..1953a1a6a2563ed3e3ed3467ea877a99185d05f8 100644
|
| --- a/storage/browser/blob/blob_data_item.h
|
| +++ b/storage/browser/blob/blob_data_item.h
|
| @@ -22,7 +22,7 @@ class BlobStorageContext;
|
| // to memory) by the BlobStorageContext.
|
| class STORAGE_EXPORT BlobDataItem : public base::RefCounted<BlobDataItem> {
|
| public:
|
| - storage::DataElement::Type type() const { return item_->type(); }
|
| + DataElement::Type type() const { return item_->type(); }
|
| const char* bytes() const { return item_->bytes(); }
|
| const base::FilePath& path() const { return item_->path(); }
|
| const GURL& filesystem_url() const { return item_->filesystem_url(); }
|
| @@ -39,12 +39,13 @@ class STORAGE_EXPORT BlobDataItem : public base::RefCounted<BlobDataItem> {
|
| friend class BlobDataBuilder;
|
| friend class BlobStorageContext;
|
| friend class base::RefCounted<BlobDataItem>;
|
| +
|
| BlobDataItem(scoped_ptr<DataElement> item);
|
| BlobDataItem(scoped_ptr<DataElement> item,
|
| scoped_refptr<ShareableFileReference> file_handle);
|
| virtual ~BlobDataItem();
|
|
|
| - scoped_ptr<storage::DataElement> item_;
|
| + scoped_ptr<DataElement> item_;
|
| scoped_refptr<ShareableFileReference> file_handle_;
|
| };
|
|
|
|
|