Chromium Code Reviews| Index: third_party/WebKit/Source/modules/indexeddb/IDBValue.h |
| diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBValue.h b/third_party/WebKit/Source/modules/indexeddb/IDBValue.h |
| index 69fd9c6abe53d0c607d4c82611b39f72c79bf76c..dce27f4715bcb352acacc6b4b83738774bc4247b 100644 |
| --- a/third_party/WebKit/Source/modules/indexeddb/IDBValue.h |
| +++ b/third_party/WebKit/Source/modules/indexeddb/IDBValue.h |
| @@ -24,6 +24,7 @@ public: |
| static PassRefPtr<IDBValue> create(); |
| static PassRefPtr<IDBValue> create(const WebIDBValue&); |
| static PassRefPtr<IDBValue> create(const IDBValue*, IDBKey*, const IDBKeyPath&); |
| + virtual ~IDBValue(); |
|
Marijn Kruisselbrink
2016/06/15 13:02:45
Why this change?
dmurph
2016/06/15 13:10:48
It was causing problems where BlobDataHandle and I
Marijn Kruisselbrink
2016/06/15 13:22:37
Sorry, I can't quite parse that sentence... What w
palakj1
2016/06/15 19:16:31
Our destructor calls the IDBValue destructor. Sinc
Marijn Kruisselbrink
2016/06/16 07:09:30
That explains why you need an explicit destructor,
|
| bool isNull() const; |
| Vector<String> getUUIDs() const; |