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

Issue 393123007: DevTools: Remove popover and add properties section for paint profiler log. (Closed)

Created:
6 years, 5 months ago by malch
Modified:
6 years, 4 months ago
Reviewers:
caseq, eustas, pfeldman
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

Remove popover and add properties section for paint profiler log. Review URL: https://codereview.chromium.org/393123007 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=180458

Patch Set 1 #

Patch Set 2 : Removed commented lines. #

Total comments: 6

Patch Set 3 : Fixes. #

Patch Set 4 : Removed line from devtools.gypi #

Patch Set 5 : Removed css mention from PaintProfilerView.js #

Patch Set 6 : Rebased. #

Patch Set 7 : Removed ObjectPropertiesSection. #

Total comments: 8

Patch Set 8 : Made log tree lazy, fixed two bugs along the way. #

Total comments: 4

Patch Set 9 : Fixes. #

Total comments: 4

Patch Set 10 : More fixes. #

Total comments: 6

Patch Set 11 : A couple of small fixes. #

Patch Set 12 : Fixed test. #

Total comments: 1
Unified diffs Side-by-side diffs Delta from patch set Stats (+94 lines, -46 lines) Patch
M LayoutTests/inspector/layers/layer-canvas-log-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +0 lines, -6 lines 0 comments Download
M Source/devtools/front_end/layersPanel.css View 1 2 3 4 5 6 1 chunk +13 lines, -0 lines 1 comment Download
M Source/devtools/front_end/timeline/Layers3DView.js View 1 2 3 4 5 6 7 1 chunk +1 line, -1 line 0 comments Download
M Source/devtools/front_end/timeline/PaintProfilerView.js View 1 2 3 4 5 6 7 8 9 10 8 chunks +79 lines, -38 lines 0 comments Download
M Source/platform/graphics/LoggingCanvas.cpp View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 22 (0 generated)
malch
Please take a look, thank you!
6 years, 5 months ago (2014-07-18 08:17:52 UTC) #1
caseq
Generally looks good, but please bring back abbreviated call params. Also, I don't think it's ...
6 years, 5 months ago (2014-07-21 14:36:42 UTC) #2
malch
https://codereview.chromium.org/393123007/diff/20001/Source/devtools/devtools.gypi File Source/devtools/devtools.gypi (right): https://codereview.chromium.org/393123007/diff/20001/Source/devtools/devtools.gypi#newcode287 Source/devtools/devtools.gypi:287: 'front_end/paintProfilerView.css', On 2014/07/21 14:36:41, caseq wrote: > You can ...
6 years, 5 months ago (2014-07-22 07:22:25 UTC) #3
caseq
https://codereview.chromium.org/393123007/diff/110001/Source/devtools/front_end/timeline/PaintProfilerView.js File Source/devtools/front_end/timeline/PaintProfilerView.js (right): https://codereview.chromium.org/393123007/diff/110001/Source/devtools/front_end/timeline/PaintProfilerView.js#newcode280 Source/devtools/front_end/timeline/PaintProfilerView.js:280: WebInspector.LogTreeElement.appendLogItem(this.sidebarTree, this, this._log[i]); Let's make it an instance method ...
6 years, 4 months ago (2014-07-31 13:00:11 UTC) #4
caseq
https://codereview.chromium.org/393123007/diff/110001/Source/devtools/front_end/timeline/PaintProfilerView.js File Source/devtools/front_end/timeline/PaintProfilerView.js (right): https://codereview.chromium.org/393123007/diff/110001/Source/devtools/front_end/timeline/PaintProfilerView.js#newcode483 Source/devtools/front_end/timeline/PaintProfilerView.js:483: WebInspector.LogPropertyTreeElement.appendLogPropertyItem = function(element, name, value) make it _private and ...
6 years, 4 months ago (2014-07-31 13:48:40 UTC) #5
malch
https://codereview.chromium.org/393123007/diff/110001/Source/devtools/front_end/timeline/PaintProfilerView.js File Source/devtools/front_end/timeline/PaintProfilerView.js (right): https://codereview.chromium.org/393123007/diff/110001/Source/devtools/front_end/timeline/PaintProfilerView.js#newcode280 Source/devtools/front_end/timeline/PaintProfilerView.js:280: WebInspector.LogTreeElement.appendLogItem(this.sidebarTree, this, this._log[i]); On 2014/07/31 13:00:11, caseq wrote: > ...
6 years, 4 months ago (2014-07-31 13:55:54 UTC) #6
caseq
lgtm https://codereview.chromium.org/393123007/diff/150001/Source/devtools/front_end/timeline/PaintProfilerView.js File Source/devtools/front_end/timeline/PaintProfilerView.js (right): https://codereview.chromium.org/393123007/diff/150001/Source/devtools/front_end/timeline/PaintProfilerView.js#newcode276 Source/devtools/front_end/timeline/PaintProfilerView.js:276: var first = new WebInspector.LogTreeElement(this, logItem); s/first/treeElement/? https://codereview.chromium.org/393123007/diff/150001/Source/devtools/front_end/timeline/PaintProfilerView.js#newcode353 ...
6 years, 4 months ago (2014-07-31 14:20:37 UTC) #7
malch
https://codereview.chromium.org/393123007/diff/150001/Source/devtools/front_end/timeline/PaintProfilerView.js File Source/devtools/front_end/timeline/PaintProfilerView.js (right): https://codereview.chromium.org/393123007/diff/150001/Source/devtools/front_end/timeline/PaintProfilerView.js#newcode276 Source/devtools/front_end/timeline/PaintProfilerView.js:276: var first = new WebInspector.LogTreeElement(this, logItem); On 2014/07/31 14:20:37, ...
6 years, 4 months ago (2014-07-31 14:27:34 UTC) #8
pfeldman
lgtm https://codereview.chromium.org/393123007/diff/170001/Source/devtools/front_end/timeline/PaintProfilerView.js File Source/devtools/front_end/timeline/PaintProfilerView.js (right): https://codereview.chromium.org/393123007/diff/170001/Source/devtools/front_end/timeline/PaintProfilerView.js#newcode470 Source/devtools/front_end/timeline/PaintProfilerView.js:470: this._update(); inline? https://codereview.chromium.org/393123007/diff/170001/Source/devtools/front_end/timeline/PaintProfilerView.js#newcode479 Source/devtools/front_end/timeline/PaintProfilerView.js:479: return value === null ...
6 years, 4 months ago (2014-07-31 16:34:28 UTC) #9
malch
https://codereview.chromium.org/393123007/diff/170001/Source/devtools/front_end/timeline/PaintProfilerView.js File Source/devtools/front_end/timeline/PaintProfilerView.js (right): https://codereview.chromium.org/393123007/diff/170001/Source/devtools/front_end/timeline/PaintProfilerView.js#newcode470 Source/devtools/front_end/timeline/PaintProfilerView.js:470: this._update(); On 2014/07/31 16:34:28, pfeldman wrote: > inline? Done. ...
6 years, 4 months ago (2014-08-13 08:46:52 UTC) #10
pfeldman
lgtm
6 years, 4 months ago (2014-08-13 09:10:29 UTC) #11
caseq
The CQ bit was checked by caseq@chromium.org
6 years, 4 months ago (2014-08-18 08:59:38 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/malch@chromium.org/393123007/190001
6 years, 4 months ago (2014-08-18 09:00:21 UTC) #13
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: linux_blink_dbg on tryserver.blink ...
6 years, 4 months ago (2014-08-18 10:02:50 UTC) #14
commit-bot: I haz the power
The CQ bit was unchecked by commit-bot@chromium.org
6 years, 4 months ago (2014-08-18 10:27:51 UTC) #15
commit-bot: I haz the power
Try jobs failed on following builders: linux_blink_rel on tryserver.blink (http://build.chromium.org/p/tryserver.blink/builders/linux_blink_rel/builds/21060)
6 years, 4 months ago (2014-08-18 10:27:52 UTC) #16
malch
On 2014/08/18 10:27:52, I haz the power (commit-bot) wrote: > Try jobs failed on following ...
6 years, 4 months ago (2014-08-18 11:20:20 UTC) #17
caseq
The CQ bit was checked by caseq@chromium.org
6 years, 4 months ago (2014-08-18 11:49:59 UTC) #18
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/malch@chromium.org/393123007/210001
6 years, 4 months ago (2014-08-18 11:50:28 UTC) #19
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, 4 months ago (2014-08-18 12:55:18 UTC) #20
commit-bot: I haz the power
Committed patchset #12 (210001) as 180458
6 years, 4 months ago (2014-08-18 13:33:38 UTC) #21
eustas
6 years, 4 months ago (2014-08-21 12:52:04 UTC) #22
Message was sent while issue was closed.
https://codereview.chromium.org/393123007/diff/210001/Source/devtools/front_e...
File Source/devtools/front_end/layersPanel.css (right):

https://codereview.chromium.org/393123007/diff/210001/Source/devtools/front_e...
Source/devtools/front_end/layersPanel.css:114: .paint-profiler-view canvas {
This class is never set.

Would you mind to remove this selector?

Powered by Google App Engine
This is Rietveld 408576698