| 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 53097cbaad6f6cf619fe7ebc88b0653722af2640..8cbd2e552eede9b3d37879ab34e9e2ec1dc6e128 100644
|
| --- a/content/browser/indexed_db/indexed_db_callbacks.h
|
| +++ b/content/browser/indexed_db/indexed_db_callbacks.h
|
| @@ -32,6 +32,7 @@ class IndexedDBDatabaseCallbacks;
|
| struct IndexedDBDataLossInfo;
|
| struct IndexedDBDatabaseMetadata;
|
| struct IndexedDBReturnValue;
|
| +class IndexedDBTransaction;
|
| struct IndexedDBValue;
|
|
|
| class CONTENT_EXPORT IndexedDBCallbacks
|
| @@ -66,13 +67,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);
|
|
|