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

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBOpenDBRequest.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
Index: third_party/WebKit/Source/modules/indexeddb/IDBOpenDBRequest.cpp
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBOpenDBRequest.cpp b/third_party/WebKit/Source/modules/indexeddb/IDBOpenDBRequest.cpp
index cd8aae0c38a33d87019d1ab7334fcb21b0a65ab3..b4f6cbbb6e3a0131f88bcac2445dc255973eac91 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBOpenDBRequest.cpp
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBOpenDBRequest.cpp
@@ -53,7 +53,10 @@ IDBOpenDBRequest::IDBOpenDBRequest(ScriptState* script_state,
IDBDatabaseCallbacks* callbacks,
int64_t transaction_id,
int64_t version)
- : IDBRequest(script_state, IDBAny::CreateNull(), nullptr),
+ : IDBRequest(script_state,
+ IDBAny::CreateNull(),
+ nullptr,
+ IDBRequest::AsyncTraceState()),
database_callbacks_(callbacks),
transaction_id_(transaction_id),
version_(version) {

Powered by Google App Engine
This is Rietveld 408576698