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

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.h

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/IDBObjectStore.h
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.h b/third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.h
index d88dbc390a2f5503bb923798a0a630ae3522e3a1..f91df7e1b06bdf16b3942dca1e7ecb26a8d86fc0 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.h
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.h
@@ -129,10 +129,12 @@ class IDBObjectStore final : public GarbageCollectedFinalized<IDBObjectStore>,
ExceptionState&);
// Used internally and by InspectorIndexedDBAgent:
- IDBRequest* openCursor(ScriptState*,
- IDBKeyRange*,
- WebIDBCursorDirection,
- WebIDBTaskType = kWebIDBTaskTypeNormal);
+ IDBRequest* openCursor(
+ ScriptState*,
+ IDBKeyRange*,
+ WebIDBCursorDirection,
+ WebIDBTaskType = kWebIDBTaskTypeNormal,
+ IDBRequest::AsyncTraceState = IDBRequest::AsyncTraceState());
void MarkDeleted();
bool IsDeleted() const { return deleted_; }

Powered by Google App Engine
This is Rietveld 408576698