| 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 bf26a1d436bd4eb4e24d13230298046339bd3de6..c3b564f33c7ca85799c254e21d6f7c1c90e93914 100644
|
| --- a/content/browser/indexed_db/indexed_db_callbacks.h
|
| +++ b/content/browser/indexed_db/indexed_db_callbacks.h
|
| @@ -59,7 +59,7 @@ class CONTENT_EXPORT IndexedDBCallbacks
|
| 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);
|
| @@ -99,10 +99,6 @@ class CONTENT_EXPORT IndexedDBCallbacks
|
|
|
| void SetConnectionOpenStartTime(const base::TimeTicks& start_time);
|
|
|
| - void set_host_transaction_id(int64_t host_transaction_id) {
|
| - host_transaction_id_ = host_transaction_id;
|
| - }
|
| -
|
| protected:
|
| virtual ~IndexedDBCallbacks();
|
|
|
| @@ -118,7 +114,6 @@ class CONTENT_EXPORT IndexedDBCallbacks
|
| scoped_refptr<IndexedDBDispatcherHost> dispatcher_host_;
|
|
|
| // IndexedDBDatabase callbacks ------------------------
|
| - int64_t host_transaction_id_;
|
| url::Origin origin_;
|
| bool database_sent_ = false;
|
|
|
|
|