| Index: content/browser/indexed_db/indexed_db_transaction.h
|
| diff --git a/content/browser/indexed_db/indexed_db_transaction.h b/content/browser/indexed_db/indexed_db_transaction.h
|
| index 6ff7f9f50d02b60afe7a4afc0c6f9654f1f51f7d..bd0e543035c2924526f3dcfa9c085022ca81460c 100644
|
| --- a/content/browser/indexed_db/indexed_db_transaction.h
|
| +++ b/content/browser/indexed_db/indexed_db_transaction.h
|
| @@ -73,8 +73,8 @@ class CONTENT_EXPORT IndexedDBTransaction
|
| }
|
| int64 id() const { return id_; }
|
|
|
| - IndexedDBDatabase* database() const { return database_; }
|
| - IndexedDBDatabaseCallbacks* connection() const { return callbacks_; }
|
| + IndexedDBDatabase* database() const { return database_.get(); }
|
| + IndexedDBDatabaseCallbacks* connection() const { return callbacks_.get(); }
|
|
|
| State state() const { return state_; }
|
| bool IsTimeoutTimerRunning() const { return timeout_timer_.IsRunning(); }
|
|
|