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

Issue 270553005: Support warning decorations in Timeline flame chart based on trace events (Closed)

Created:
6 years, 7 months ago by yurys
Modified:
6 years, 7 months ago
Reviewers:
caseq, pfeldman, loislo
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
Visibility:
Public.

Description

Support warning decorations in Timeline flame chart based on trace events BUG=361045 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=173654

Patch Set 1 #

Patch Set 2 : #

Total comments: 2

Patch Set 3 : #

Patch Set 4 : #

Total comments: 6

Patch Set 5 : #

Total comments: 2

Patch Set 6 : #

Patch Set 7 : Fixed timeline tests #

Unified diffs Side-by-side diffs Delta from patch set Stats (+97 lines, -561 lines) Patch
M LayoutTests/inspector/tracing.html View 1 2 3 4 5 6 1 chunk +2 lines, -0 lines 0 comments Download
M LayoutTests/inspector/tracing-session-id.html View 1 2 3 4 5 6 1 chunk +1 line, -0 lines 0 comments Download
M Source/devtools/devtools.gypi View 1 2 3 4 5 6 2 chunks +1 line, -1 line 0 comments Download
M Source/devtools/front_end/inspector.html View 1 2 3 4 5 6 1 chunk +0 lines, -1 line 0 comments Download
M Source/devtools/front_end/sdk/TracingModel.js View 1 1 chunk +0 lines, -554 lines 0 comments Download
M Source/devtools/front_end/timeline/TimelineFlameChart.js View 1 2 3 4 5 6 2 chunks +41 lines, -3 lines 0 comments Download
M Source/devtools/front_end/timeline/TimelinePanel.js View 1 2 3 4 5 6 1 chunk +1 line, -0 lines 0 comments Download
A + Source/devtools/front_end/timeline/TracingModel.js View 1 2 3 4 5 6 4 chunks +49 lines, -0 lines 0 comments Download
M Source/devtools/scripts/frontend_modules.json View 1 2 3 4 5 6 2 chunks +2 lines, -2 lines 0 comments Download

Messages

Total messages: 11 (0 generated)
yurys
6 years, 7 months ago (2014-05-07 15:19:52 UTC) #1
caseq
https://codereview.chromium.org/270553005/diff/20001/Source/devtools/front_end/timeline/TracingModel.js File Source/devtools/front_end/timeline/TracingModel.js (right): https://codereview.chromium.org/270553005/diff/20001/Source/devtools/front_end/timeline/TracingModel.js#newcode196 Source/devtools/front_end/timeline/TracingModel.js:196: if (event.name === WebInspector.TimelineModel.RecordType.EvaluateScript || event.name === WebInspector.TimelineModel.RecordType.FunctionCall) Looks ...
6 years, 7 months ago (2014-05-07 15:44:32 UTC) #2
yurys
https://codereview.chromium.org/270553005/diff/20001/Source/devtools/front_end/timeline/TracingModel.js File Source/devtools/front_end/timeline/TracingModel.js (right): https://codereview.chromium.org/270553005/diff/20001/Source/devtools/front_end/timeline/TracingModel.js#newcode196 Source/devtools/front_end/timeline/TracingModel.js:196: if (event.name === WebInspector.TimelineModel.RecordType.EvaluateScript || event.name === WebInspector.TimelineModel.RecordType.FunctionCall) On ...
6 years, 7 months ago (2014-05-08 07:46:45 UTC) #3
caseq
https://codereview.chromium.org/270553005/diff/50001/Source/devtools/front_end/timeline/TracingModel.js File Source/devtools/front_end/timeline/TracingModel.js (right): https://codereview.chromium.org/270553005/diff/50001/Source/devtools/front_end/timeline/TracingModel.js#newcode204 Source/devtools/front_end/timeline/TracingModel.js:204: this._eventToWarning = new Map(); remove? https://codereview.chromium.org/270553005/diff/50001/Source/devtools/front_end/timeline/TracingModel.js#newcode327 Source/devtools/front_end/timeline/TracingModel.js:327: for (var ...
6 years, 7 months ago (2014-05-08 09:03:53 UTC) #4
yurys
https://codereview.chromium.org/270553005/diff/50001/Source/devtools/front_end/timeline/TracingModel.js File Source/devtools/front_end/timeline/TracingModel.js (right): https://codereview.chromium.org/270553005/diff/50001/Source/devtools/front_end/timeline/TracingModel.js#newcode204 Source/devtools/front_end/timeline/TracingModel.js:204: this._eventToWarning = new Map(); On 2014/05/08 09:03:53, caseq wrote: ...
6 years, 7 months ago (2014-05-08 09:47:30 UTC) #5
caseq
lgtm https://codereview.chromium.org/270553005/diff/70001/Source/devtools/front_end/timeline/TracingModel.js File Source/devtools/front_end/timeline/TracingModel.js (right): https://codereview.chromium.org/270553005/diff/70001/Source/devtools/front_end/timeline/TracingModel.js#newcode307 Source/devtools/front_end/timeline/TracingModel.js:307: WebInspector.TracingModel.EventBindings = function(model) { { => next line.
6 years, 7 months ago (2014-05-08 09:58:18 UTC) #6
yurys
https://codereview.chromium.org/270553005/diff/70001/Source/devtools/front_end/timeline/TracingModel.js File Source/devtools/front_end/timeline/TracingModel.js (right): https://codereview.chromium.org/270553005/diff/70001/Source/devtools/front_end/timeline/TracingModel.js#newcode307 Source/devtools/front_end/timeline/TracingModel.js:307: WebInspector.TracingModel.EventBindings = function(model) { On 2014/05/08 09:58:18, caseq wrote: ...
6 years, 7 months ago (2014-05-08 10:49:27 UTC) #7
yurys
The CQ bit was checked by yurys@chromium.org
6 years, 7 months ago (2014-05-08 14:35:58 UTC) #8
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/yurys@chromium.org/270553005/90001
6 years, 7 months ago (2014-05-08 14:36:42 UTC) #9
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). Please consider checking whether the failures are ...
6 years, 7 months ago (2014-05-08 15:42:36 UTC) #10
commit-bot: I haz the power
6 years, 7 months ago (2014-05-08 16:49:06 UTC) #11
Message was sent while issue was closed.
Change committed as 173654

Powered by Google App Engine
This is Rietveld 408576698