| Index: content/browser/indexed_db/indexed_db_blob_info.h
|
| diff --git a/content/browser/indexed_db/indexed_db_blob_info.h b/content/browser/indexed_db/indexed_db_blob_info.h
|
| index 3720ec5c6287f508a4a61f35f3d30c22795ce553..7d8ff4ef8822fea71387dc8cecf913fc9a992b0e 100644
|
| --- a/content/browser/indexed_db/indexed_db_blob_info.h
|
| +++ b/content/browser/indexed_db/indexed_db_blob_info.h
|
| @@ -19,7 +19,6 @@ class CONTENT_EXPORT IndexedDBBlobInfo {
|
| public:
|
| typedef storage::ShareableFileReference::FinalReleaseCallback ReleaseCallback;
|
| IndexedDBBlobInfo();
|
| - ~IndexedDBBlobInfo();
|
| // These two are used for Blobs.
|
| IndexedDBBlobInfo(const std::string& uuid,
|
| const base::string16& type,
|
| @@ -34,6 +33,8 @@ class CONTENT_EXPORT IndexedDBBlobInfo {
|
| const base::string16& type,
|
| const base::string16& file_name);
|
|
|
| + ~IndexedDBBlobInfo();
|
| +
|
| bool is_file() const { return is_file_; }
|
| const std::string& uuid() const { return uuid_; }
|
| const base::string16& type() const { return type_; }
|
|
|