summaryrefslogtreecommitdiff
path: root/chromium/content/browser/indexed_db/indexed_db_transaction_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/browser/indexed_db/indexed_db_transaction_unittest.cc')
-rw-r--r--chromium/content/browser/indexed_db/indexed_db_transaction_unittest.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/chromium/content/browser/indexed_db/indexed_db_transaction_unittest.cc b/chromium/content/browser/indexed_db/indexed_db_transaction_unittest.cc
index 5c2e384fb2c..4b27a9afa7e 100644
--- a/chromium/content/browser/indexed_db/indexed_db_transaction_unittest.cc
+++ b/chromium/content/browser/indexed_db/indexed_db_transaction_unittest.cc
@@ -18,6 +18,7 @@
#include "content/browser/indexed_db/indexed_db_class_factory.h"
#include "content/browser/indexed_db/indexed_db_connection.h"
#include "content/browser/indexed_db/indexed_db_database_error.h"
+#include "content/browser/indexed_db/indexed_db_execution_context_connection_tracker.h"
#include "content/browser/indexed_db/indexed_db_factory_impl.h"
#include "content/browser/indexed_db/indexed_db_fake_backing_store.h"
#include "content/browser/indexed_db/indexed_db_leveldb_coding.h"
@@ -40,8 +41,6 @@ void SetToTrue(bool* value) {
} // namespace
-const int kFakeProcessId = 10;
-
class AbortObserver {
public:
AbortObserver() : abort_task_called_(false) {}
@@ -120,11 +119,12 @@ class IndexedDBTransactionTest : public testing::Test {
}
std::unique_ptr<IndexedDBConnection> CreateConnection() {
- auto connection = std::unique_ptr<IndexedDBConnection>(
- std::make_unique<IndexedDBConnection>(
- kFakeProcessId, IndexedDBOriginStateHandle(),
- IndexedDBClassFactory::Get(), db_->AsWeakPtr(), base::DoNothing(),
- base::DoNothing(), new MockIndexedDBDatabaseCallbacks()));
+ auto connection = std::unique_ptr<
+ IndexedDBConnection>(std::make_unique<IndexedDBConnection>(
+ IndexedDBExecutionContextConnectionTracker::Handle::CreateForTesting(),
+ IndexedDBOriginStateHandle(), IndexedDBClassFactory::Get(),
+ db_->AsWeakPtr(), base::DoNothing(), base::DoNothing(),
+ new MockIndexedDBDatabaseCallbacks()));
db_->AddConnectionForTesting(connection.get());
return connection;
}