| Index: content/browser/indexed_db/indexed_db_transaction.cc
|
| diff --git a/content/browser/indexed_db/indexed_db_transaction.cc b/content/browser/indexed_db/indexed_db_transaction.cc
|
| index 36faa51da0f10ae60d4cf1f1ced48e0e20be3a80..befca11e623103dc29d8e020d6f01712a3d67798 100644
|
| --- a/content/browser/indexed_db/indexed_db_transaction.cc
|
| +++ b/content/browser/indexed_db/indexed_db_transaction.cc
|
| @@ -21,7 +21,7 @@
|
|
|
| namespace content {
|
|
|
| -const int64 kInactivityTimeoutPeriodSeconds = 60;
|
| +const int64_t kInactivityTimeoutPeriodSeconds = 60;
|
|
|
| IndexedDBTransaction::TaskQueue::TaskQueue() {}
|
| IndexedDBTransaction::TaskQueue::~TaskQueue() { clear(); }
|
| @@ -54,9 +54,9 @@ IndexedDBTransaction::Operation IndexedDBTransaction::TaskStack::pop() {
|
| }
|
|
|
| IndexedDBTransaction::IndexedDBTransaction(
|
| - int64 id,
|
| + int64_t id,
|
| scoped_refptr<IndexedDBDatabaseCallbacks> callbacks,
|
| - const std::set<int64>& object_store_ids,
|
| + const std::set<int64_t>& object_store_ids,
|
| blink::WebIDBTransactionMode mode,
|
| IndexedDBDatabase* database,
|
| IndexedDBBackingStore::Transaction* backing_store_transaction)
|
|
|