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

Issue 2890023003: [IndexedDB] Adding async tracing for renderer calls. (Closed)

Created:
3 years, 7 months ago by dmurph
Modified:
3 years, 6 months ago
Reviewers:
pwnall
CC:
chromium-reviews, haraken, blink-reviews, jsbell+idb_chromium.org, cmumford
Target Ref:
refs/heads/master
Project:
chromium
Visibility:
Public.

Description

[IndexedDB] Adding async tracing for renderer calls. Screenshot of new async tracing: https://screenshot.googleplex.com/empkTdUte65 R=pwnall BUG=723129 Review-Url: https://codereview.chromium.org/2890023003 Cr-Commit-Position: refs/heads/master@{#476107} Committed: https://chromium.googlesource.com/chromium/src/+/2cef226d150bca11b6151dcf39f9ecc3ed71715f

Patch Set 1 #

Patch Set 2 : blink-ifyied #

Patch Set 3 : added cursor continue & advance support #

Patch Set 4 : cleanup, comments #

Patch Set 5 : fixed tests #

Total comments: 8

Patch Set 6 : fixed layouttests #

Patch Set 7 : comments, made move-only #

Patch Set 8 : test fix #

Total comments: 10

Patch Set 9 : comments #

Patch Set 10 : fixed blink tests #

Unified diffs Side-by-side diffs Delta from patch set Stats (+292 lines, -115 lines) Patch
M third_party/WebKit/Source/modules/indexeddb/IDBCursor.h View 1 2 3 4 5 6 7 8 1 chunk +4 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/indexeddb/IDBCursor.cpp View 1 2 3 4 5 6 7 8 9 chunks +17 lines, -10 lines 0 comments Download
M third_party/WebKit/Source/modules/indexeddb/IDBFactory.cpp View 1 2 3 4 5 6 7 8 2 chunks +4 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/modules/indexeddb/IDBIndex.h View 1 2 3 4 5 6 1 chunk +5 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/indexeddb/IDBIndex.cpp View 1 2 3 4 5 6 7 8 14 chunks +32 lines, -19 lines 0 comments Download
M third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.h View 1 2 3 4 5 6 1 chunk +6 lines, -4 lines 0 comments Download
M third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.cpp View 1 2 3 4 5 6 7 8 9 27 chunks +74 lines, -36 lines 0 comments Download
M third_party/WebKit/Source/modules/indexeddb/IDBOpenDBRequest.cpp View 1 2 3 4 5 6 7 8 1 chunk +4 lines, -1 line 0 comments Download
M third_party/WebKit/Source/modules/indexeddb/IDBRequest.h View 1 2 3 4 5 6 7 8 5 chunks +45 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/modules/indexeddb/IDBRequest.cpp View 1 2 3 4 5 6 7 8 9 chunks +64 lines, -15 lines 0 comments Download
M third_party/WebKit/Source/modules/indexeddb/IDBRequestTest.cpp View 1 2 3 4 5 6 7 8 9 5 chunks +19 lines, -12 lines 0 comments Download
M third_party/WebKit/Source/modules/indexeddb/IDBTransactionTest.cpp View 1 2 3 4 5 6 7 8 9 4 chunks +16 lines, -10 lines 0 comments Download
M third_party/WebKit/Source/modules/indexeddb/InspectorIndexedDBAgent.cpp View 1 2 3 4 5 6 7 8 1 chunk +2 lines, -1 line 0 comments Download

Messages

Total messages: 37 (29 generated)
dmurph
Hello Victor, Can you ptal at this patch? It adds tracing to IDB async calls, ...
3 years, 7 months ago (2017-05-17 22:17:05 UTC) #4
pwnall
Here is a wave of nits. https://codereview.chromium.org/2890023003/diff/80001/third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.h File third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.h (right): https://codereview.chromium.org/2890023003/diff/80001/third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.h#newcode123 third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.h:123: // Used by ...
3 years, 7 months ago (2017-05-18 22:14:32 UTC) #16
dmurph
Thanks, PTAL https://codereview.chromium.org/2890023003/diff/80001/third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.h File third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.h (right): https://codereview.chromium.org/2890023003/diff/80001/third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.h#newcode123 third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.h:123: // Used by IDBCursor::update():ccccc On 2017/05/18 22:14:32, ...
3 years, 7 months ago (2017-05-18 23:51:15 UTC) #19
pwnall
This is useful information to surface, thank you very much for working on the CL. ...
3 years, 6 months ago (2017-05-25 23:04:26 UTC) #22
dmurph
https://codereview.chromium.org/2890023003/diff/140001/third_party/WebKit/Source/modules/indexeddb/IDBCursor.cpp File third_party/WebKit/Source/modules/indexeddb/IDBCursor.cpp (right): https://codereview.chromium.org/2890023003/diff/140001/third_party/WebKit/Source/modules/indexeddb/IDBCursor.cpp#newcode105 third_party/WebKit/Source/modules/indexeddb/IDBCursor.cpp:105: IDB_TRACE("IDBCursor::updateCall"); On 2017/05/25 23:04:25, pwnall wrote: > The Call ...
3 years, 6 months ago (2017-05-31 19:26:25 UTC) #24
pwnall
LGTM. Thank you for the revisions! On 2017/05/31 19:26:25, dmurph wrote: > https://codereview.chromium.org/2890023003/diff/140001/third_party/WebKit/Source/modules/indexeddb/IDBCursor.cpp > File ...
3 years, 6 months ago (2017-05-31 22:51:28 UTC) #31
commit-bot: I haz the power
CQ is trying da patch. Follow status at: https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2890023003/180001
3 years, 6 months ago (2017-05-31 23:27:59 UTC) #34
commit-bot: I haz the power
3 years, 6 months ago (2017-06-01 00:23:46 UTC) #37
Message was sent while issue was closed.
Committed patchset #10 (id:180001) as
https://chromium.googlesource.com/chromium/src/+/2cef226d150bca11b6151dcf39f9...

Powered by Google App Engine
This is Rietveld 408576698