| 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 6c78022fe0dff0c40e4660a3a3715df2935ff4f7..c1a20d561694f15be9fec3aee777ae26d962a40c 100644
|
| --- a/content/browser/indexed_db/indexed_db_transaction.h
|
| +++ b/content/browser/indexed_db/indexed_db_transaction.h
|
| @@ -70,22 +70,19 @@ class IndexedDBTransaction : public base::RefCounted<IndexedDBTransaction> {
|
| }
|
| int64 id() const { return id_; }
|
|
|
| - IndexedDBDatabase* database() const { return database_.get(); }
|
| - IndexedDBDatabaseCallbacks* connection() const {
|
| - return callbacks_.get();
|
| - }
|
| + IndexedDBDatabase* database() const { return database_; }
|
| + IndexedDBDatabaseCallbacks* connection() const { return callbacks_; }
|
|
|
| protected:
|
| virtual ~IndexedDBTransaction();
|
| friend class base::RefCounted<IndexedDBTransaction>;
|
|
|
| private:
|
| - IndexedDBTransaction(
|
| - int64 id,
|
| - scoped_refptr<IndexedDBDatabaseCallbacks> callbacks,
|
| - const std::set<int64>& object_store_ids,
|
| - indexed_db::TransactionMode,
|
| - IndexedDBDatabase* db);
|
| + IndexedDBTransaction(int64 id,
|
| + scoped_refptr<IndexedDBDatabaseCallbacks> callbacks,
|
| + const std::set<int64>& object_store_ids,
|
| + indexed_db::TransactionMode,
|
| + IndexedDBDatabase* db);
|
|
|
| enum State {
|
| UNUSED, // Created, but no tasks yet.
|
|
|