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

Unified Diff: third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp

Issue 2890023003: [IndexedDB] Adding async tracing for renderer calls. (Closed)
Patch Set: fixed blink tests Created 3 years, 7 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
« no previous file with comments | « third_party/WebKit/Source/modules/indexeddb/IDBTransactionTest.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp
diff --git a/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp b/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp
index d6bba0057eb1f56418b06d61bd84f2eb6a384c52..3c48ed3d68569401e1aa0fd021dcf60052678681 100644
--- a/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp
+++ b/third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp
@@ -566,7 +566,8 @@ class OpenCursorCallback final : public EventListener {
// Continue cursor before making injected script calls, otherwise
// transaction might be finished.
DummyExceptionStateForTesting exception_state;
- idb_cursor->Continue(nullptr, nullptr, exception_state);
+ idb_cursor->Continue(nullptr, nullptr, IDBRequest::AsyncTraceState(),
+ exception_state);
if (exception_state.HadException()) {
request_callback_->sendFailure(
Response::Error("Could not continue cursor."));
« no previous file with comments | « third_party/WebKit/Source/modules/indexeddb/IDBTransactionTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698