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

Issue 400643002: DevTools: Add ability to go to paint record and paint profiler in Timeline from layers view. (Closed)

Created:
6 years, 5 months ago by malch
Modified:
6 years, 5 months ago
Reviewers:
caseq, yurys
CC:
blink-reviews, caseq+blink_chromium.org, loislo+blink_chromium.org, eustas+blink_chromium.org, malch+blink_chromium.org, yurys+blink_chromium.org, lushnikov+blink_chromium.org, vsevik+blink_chromium.org, pfeldman+blink_chromium.org, paulirish+reviews_chromium.org, apavlov+blink_chromium.org, devtools-reviews_chromium.org, sergeyv+blink_chromium.org, aandrey+blink_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/blink.git@master
Project:
blink
Visibility:
Public.

Description

Add ability to go to paint record and paint profiler in Timeline from layers view. Review URL: https://codereview.chromium.org/400643002 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=178565

Patch Set 1 #

Patch Set 2 : Small refactoring. #

Total comments: 12

Patch Set 3 : Use event instead of callback. #

Total comments: 6

Patch Set 4 : Remove unused function. #

Total comments: 4

Patch Set 5 : Small fixes. #

Total comments: 2

Patch Set 6 : Added annotations. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+134 lines, -18 lines) Patch
M Source/devtools/front_end/timeline/Layers3DView.js View 1 2 3 4 10 chunks +91 lines, -15 lines 0 comments Download
M Source/devtools/front_end/timeline/TimelineFrameModel.js View 1 2 3 4 5 2 chunks +2 lines, -2 lines 0 comments Download
M Source/devtools/front_end/timeline/TimelineLayersView.js View 1 2 3 4 5 3 chunks +40 lines, -1 line 0 comments Download
M Source/devtools/front_end/timeline/TimelinePanel.js View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 13 (0 generated)
malch
Please take a look, thank you!
6 years, 5 months ago (2014-07-17 12:35:23 UTC) #1
caseq
https://codereview.chromium.org/400643002/diff/20001/Source/devtools/front_end/timeline/Layers3DView.js File Source/devtools/front_end/timeline/Layers3DView.js (right): https://codereview.chromium.org/400643002/diff/20001/Source/devtools/front_end/timeline/Layers3DView.js#newcode154 Source/devtools/front_end/timeline/Layers3DView.js:154: setSelectPaintEventCallback: function(callback) Why isn't this an event? https://codereview.chromium.org/400643002/diff/20001/Source/devtools/front_end/timeline/Layers3DView.js#newcode662 Source/devtools/front_end/timeline/Layers3DView.js:662: ...
6 years, 5 months ago (2014-07-17 13:12:22 UTC) #2
malch
https://codereview.chromium.org/400643002/diff/20001/Source/devtools/front_end/timeline/Layers3DView.js File Source/devtools/front_end/timeline/Layers3DView.js (right): https://codereview.chromium.org/400643002/diff/20001/Source/devtools/front_end/timeline/Layers3DView.js#newcode154 Source/devtools/front_end/timeline/Layers3DView.js:154: setSelectPaintEventCallback: function(callback) On 2014/07/17 13:12:22, caseq wrote: > Why ...
6 years, 5 months ago (2014-07-17 15:17:45 UTC) #3
caseq
https://codereview.chromium.org/400643002/diff/40001/Source/devtools/front_end/timeline/Layers3DView.js File Source/devtools/front_end/timeline/Layers3DView.js (right): https://codereview.chromium.org/400643002/diff/40001/Source/devtools/front_end/timeline/Layers3DView.js#newcode985 Source/devtools/front_end/timeline/Layers3DView.js:985: WebInspector.Layers3DView.ActiveObject = function() nit: we probably need to be ...
6 years, 5 months ago (2014-07-17 16:10:03 UTC) #4
malch
https://codereview.chromium.org/400643002/diff/40001/Source/devtools/front_end/timeline/Layers3DView.js File Source/devtools/front_end/timeline/Layers3DView.js (right): https://codereview.chromium.org/400643002/diff/40001/Source/devtools/front_end/timeline/Layers3DView.js#newcode985 Source/devtools/front_end/timeline/Layers3DView.js:985: WebInspector.Layers3DView.ActiveObject = function() Will fix this when I come ...
6 years, 5 months ago (2014-07-17 16:20:32 UTC) #5
caseq
lgtm https://codereview.chromium.org/400643002/diff/60001/Source/devtools/front_end/timeline/Layers3DView.js File Source/devtools/front_end/timeline/Layers3DView.js (right): https://codereview.chromium.org/400643002/diff/60001/Source/devtools/front_end/timeline/Layers3DView.js#newcode655 Source/devtools/front_end/timeline/Layers3DView.js:655: contextMenu.appendItem(WebInspector.UIString("Jump to paint event"), this.dispatchEventToListeners.bind(this, WebInspector.Layers3DView.Events.JumpToPaintEventRequested, activeObject.traceEvent), false); ...
6 years, 5 months ago (2014-07-17 16:24:12 UTC) #6
malch
https://codereview.chromium.org/400643002/diff/60001/Source/devtools/front_end/timeline/Layers3DView.js File Source/devtools/front_end/timeline/Layers3DView.js (right): https://codereview.chromium.org/400643002/diff/60001/Source/devtools/front_end/timeline/Layers3DView.js#newcode655 Source/devtools/front_end/timeline/Layers3DView.js:655: contextMenu.appendItem(WebInspector.UIString("Jump to paint event"), this.dispatchEventToListeners.bind(this, WebInspector.Layers3DView.Events.JumpToPaintEventRequested, activeObject.traceEvent), false); On ...
6 years, 5 months ago (2014-07-17 16:29:46 UTC) #7
yurys
lgtm https://codereview.chromium.org/400643002/diff/60002/Source/devtools/front_end/timeline/TimelineLayersView.js File Source/devtools/front_end/timeline/TimelineLayersView.js (right): https://codereview.chromium.org/400643002/diff/60002/Source/devtools/front_end/timeline/TimelineLayersView.js#newcode65 Source/devtools/front_end/timeline/TimelineLayersView.js:65: function findRecordWithEvent(record) Please add annotations.
6 years, 5 months ago (2014-07-18 11:32:11 UTC) #8
malch
https://codereview.chromium.org/400643002/diff/60002/Source/devtools/front_end/timeline/TimelineLayersView.js File Source/devtools/front_end/timeline/TimelineLayersView.js (right): https://codereview.chromium.org/400643002/diff/60002/Source/devtools/front_end/timeline/TimelineLayersView.js#newcode65 Source/devtools/front_end/timeline/TimelineLayersView.js:65: function findRecordWithEvent(record) Done, thanks! On 2014/07/18 11:32:11, yurys wrote: ...
6 years, 5 months ago (2014-07-18 11:41:36 UTC) #9
caseq
The CQ bit was checked by caseq@chromium.org
6 years, 5 months ago (2014-07-21 13:49:05 UTC) #10
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/malch@chromium.org/400643002/90001
6 years, 5 months ago (2014-07-21 13:49:36 UTC) #11
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: win_blink_rel on tryserver.blink ...
6 years, 5 months ago (2014-07-21 14:58:48 UTC) #12
commit-bot: I haz the power
6 years, 5 months ago (2014-07-21 15:35:17 UTC) #13
Message was sent while issue was closed.
Change committed as 178565

Powered by Google App Engine
This is Rietveld 408576698