Chromium Code Reviews| Index: content/browser/indexed_db/indexed_db_backing_store.h |
| diff --git a/content/browser/indexed_db/indexed_db_backing_store.h b/content/browser/indexed_db/indexed_db_backing_store.h |
| index 722a1d4226079b387177ad4f5ed2054febf3b60c..58f699c2236c0e347d65b67ba07c68acc80bf93a 100644 |
| --- a/content/browser/indexed_db/indexed_db_backing_store.h |
| +++ b/content/browser/indexed_db/indexed_db_backing_store.h |
| @@ -315,7 +315,7 @@ class CONTENT_EXPORT IndexedDBBackingStore |
| bool Advance(uint32_t count, leveldb::Status*); |
| bool FirstSeek(leveldb::Status*); |
| - virtual Cursor* Clone() = 0; |
| + virtual std::unique_ptr<Cursor> Clone() = 0; |
|
cmumford
2016/08/13 00:08:38
Now that you're changing Clone's signature, why no
jsbell
2016/08/16 03:05:28
Done.
|
| virtual const IndexedDBKey& primary_key() const; |
| virtual IndexedDBValue* value() = 0; |
| virtual const RecordIdentifier& record_identifier() const; |