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 a2ac99149fc7725862ab697b4831b6da610fb4a6..ee2f0e9624629c4874f9eab3d871f97b7f3ad585 100644 |
--- a/content/browser/indexed_db/indexed_db_blob_info.h |
+++ b/content/browser/indexed_db/indexed_db_blob_info.h |
@@ -20,7 +20,6 @@ class CONTENT_EXPORT IndexedDBBlobInfo { |
typedef webkit_blob::ShareableFileReference::FinalReleaseCallback |
ReleaseCallback; |
IndexedDBBlobInfo(); |
- ~IndexedDBBlobInfo(); |
// These two are used for Blobs. |
IndexedDBBlobInfo(const std::string& uuid, |
const base::string16& type, |
@@ -35,6 +34,8 @@ class CONTENT_EXPORT IndexedDBBlobInfo { |
const base::string16& type, |
const base::string16& file_name); |
+ ~IndexedDBBlobInfo(); |
cmumford
2014/08/20 19:43:05
Should this be reordered in the *.cc file too?
jsbell
2014/08/22 20:50:01
Done.
|
+ |
bool is_file() const { return is_file_; } |
const std::string& uuid() const { return uuid_; } |
const base::string16& type() const { return type_; } |