| Index: content/browser/indexed_db/indexed_db_backing_store.h
|
| diff --git a/content/browser/indexed_db/indexed_db_backing_store.h b/content/browser/indexed_db/indexed_db_backing_store.h
|
| index ef10006441cf9085c101ef856eaf0aa4c0ff8992..65f210c03d0e09ec0fcfeb547c7021f45d3b4041 100644
|
| --- a/content/browser/indexed_db/indexed_db_backing_store.h
|
| +++ b/content/browser/indexed_db/indexed_db_backing_store.h
|
| @@ -109,9 +109,9 @@ class CONTENT_EXPORT IndexedDBBackingStore
|
| }
|
|
|
| private:
|
| - std::vector<char>
|
| - primary_key_; // TODO(jsbell): Make it more clear that this is
|
| - // the *encoded* version of the key.
|
| + // TODO(jsbell): Make it more clear that this is the *encoded* version of
|
| + // the key.
|
| + std::vector<char> primary_key_;
|
| int64 version_;
|
| DISALLOW_COPY_AND_ASSIGN(RecordIdentifier);
|
| };
|
| @@ -280,7 +280,7 @@ class CONTENT_EXPORT IndexedDBBackingStore
|
|
|
| static LevelDBTransaction* LevelDBTransactionFrom(
|
| Transaction* transaction) {
|
| - return transaction->transaction_.get();
|
| + return transaction->transaction_;
|
| }
|
|
|
| private:
|
|
|