| Index: content/browser/indexed_db/indexed_db_callbacks.h
|
| diff --git a/content/browser/indexed_db/indexed_db_callbacks.h b/content/browser/indexed_db/indexed_db_callbacks.h
|
| index 083f45ec196e68b1f15da6e61ab476dc286df0c9..b60064fb5826c082703204f8efea57ac4b0e8b16 100644
|
| --- a/content/browser/indexed_db/indexed_db_callbacks.h
|
| +++ b/content/browser/indexed_db/indexed_db_callbacks.h
|
| @@ -31,6 +31,7 @@ class IndexedDBDatabase;
|
| struct IndexedDBDataLossInfo;
|
| struct IndexedDBDatabaseMetadata;
|
| struct IndexedDBReturnValue;
|
| +class IndexedDBTransaction;
|
| struct IndexedDBValue;
|
|
|
| class CONTENT_EXPORT IndexedDBCallbacks
|
| @@ -65,13 +66,14 @@ class CONTENT_EXPORT IndexedDBCallbacks
|
| virtual void OnUpgradeNeeded(
|
| int64_t old_version,
|
| std::unique_ptr<IndexedDBConnection> connection,
|
| + IndexedDBTransaction* transaction,
|
| const content::IndexedDBDatabaseMetadata& metadata,
|
| const IndexedDBDataLossInfo& data_loss_info);
|
| virtual void OnSuccess(std::unique_ptr<IndexedDBConnection> connection,
|
| const content::IndexedDBDatabaseMetadata& metadata);
|
|
|
| // IndexedDBDatabase::OpenCursor
|
| - virtual void OnSuccess(scoped_refptr<IndexedDBCursor> cursor,
|
| + virtual void OnSuccess(std::unique_ptr<IndexedDBCursor> cursor,
|
| const IndexedDBKey& key,
|
| const IndexedDBKey& primary_key,
|
| IndexedDBValue* value);
|
|
|