Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(232)

Unified Diff: Source/modules/indexeddb/IDBTransaction.cpp

Issue 429453010: Drop V8RecursionScope dependency on ExecutionContext (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Factor out microtask fix/tests Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/modules/indexeddb/IDBTransaction.cpp
diff --git a/Source/modules/indexeddb/IDBTransaction.cpp b/Source/modules/indexeddb/IDBTransaction.cpp
index 85c431cfe163ee07c3c1283d792808e22bd07490..8ff0cd396be52c380532e7b9d4d5821a77d356de 100644
--- a/Source/modules/indexeddb/IDBTransaction.cpp
+++ b/Source/modules/indexeddb/IDBTransaction.cpp
@@ -77,7 +77,7 @@ IDBTransaction::IDBTransaction(ScriptState* scriptState, int64_t id, const Vecto
}
if (m_state == Active)
- IDBPendingTransactionMonitor::from(*scriptState->executionContext()).addNewTransaction(*this);
+ IDBPendingTransactionMonitor::addNewTransaction(scriptState->isolate(), *this);
m_database->transactionCreated(this);
}

Powered by Google App Engine
This is Rietveld 408576698