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

Issue 23308009: [DevTools] Save as HAR: classify time before network activity as "blocked". (Closed)

Created:
7 years, 3 months ago by eustas
Modified:
7 years, 3 months ago
Reviewers:
caseq
CC:
blink-reviews, caseq+blink_chromium.org, loislo+blink_chromium.org, eustas+blink_chromium.org, alph+blink_chromium.org, eae+blinkwatch, yurys+blink_chromium.org, lushnikov+blink_chromium.org, vsevik+blink_chromium.org, pfeldman+blink_chromium.org, dglazkov+blink, paulirish+reviews_chromium.org, apavlov+blink_chromium.org, devtools-reviews_chromium.org, aandrey+blink_chromium.org
Visibility:
Public.

Description

[DevTools] Save as HAR: classify time before network activity as "blocked". EOM BUG= Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=157971

Patch Set 1 #

Patch Set 2 : Add custom field for "other" time #

Patch Set 3 : Fix rounding, remove proxy from network activities list. #

Total comments: 10

Patch Set 4 : #

Total comments: 10

Patch Set 5 : Addressed comments #

Total comments: 8

Patch Set 6 : #

Total comments: 2

Patch Set 7 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+36 lines, -43 lines) Patch
M Source/devtools/front_end/HAREntry.js View 1 2 3 4 5 6 4 chunks +36 lines, -32 lines 0 comments Download
M Source/devtools/front_end/NetworkRequest.js View 1 2 3 4 5 6 2 chunks +0 lines, -11 lines 0 comments Download

Messages

Total messages: 13 (0 generated)
eustas
7 years, 3 months ago (2013-08-26 08:27:29 UTC) #1
caseq
not lgtm Why are we doing this? Per HAR 1.2 spec, blocked is "Time spent ...
7 years, 3 months ago (2013-08-26 08:48:09 UTC) #2
eustas
Please, take another look.
7 years, 3 months ago (2013-08-27 13:41:48 UTC) #3
caseq
https://codereview.chromium.org/23308009/diff/7001/Source/devtools/front_end/HAREntry.js File Source/devtools/front_end/HAREntry.js (right): https://codereview.chromium.org/23308009/diff/7001/Source/devtools/front_end/HAREntry.js#newcode53 Source/devtools/front_end/HAREntry.js:53: var time = Math.max(timings.blocked, 0) + Math.max(timings.dns, 0) + ...
7 years, 3 months ago (2013-08-30 15:12:53 UTC) #4
eustas
PTAL https://codereview.chromium.org/23308009/diff/7001/Source/devtools/front_end/HAREntry.js File Source/devtools/front_end/HAREntry.js (right): https://codereview.chromium.org/23308009/diff/7001/Source/devtools/front_end/HAREntry.js#newcode53 Source/devtools/front_end/HAREntry.js:53: var time = Math.max(timings.blocked, 0) + Math.max(timings.dns, 0) ...
7 years, 3 months ago (2013-09-13 15:10:35 UTC) #5
caseq
https://codereview.chromium.org/23308009/diff/11001/Source/devtools/front_end/HAREntry.js File Source/devtools/front_end/HAREntry.js (right): https://codereview.chromium.org/23308009/diff/11001/Source/devtools/front_end/HAREntry.js#newcode136 Source/devtools/front_end/HAREntry.js:136: function nextEventTime(events) { style: { => next line https://codereview.chromium.org/23308009/diff/11001/Source/devtools/front_end/HAREntry.js#newcode138 ...
7 years, 3 months ago (2013-09-13 15:24:06 UTC) #6
eustas
PTAL https://codereview.chromium.org/23308009/diff/11001/Source/devtools/front_end/HAREntry.js File Source/devtools/front_end/HAREntry.js (right): https://codereview.chromium.org/23308009/diff/11001/Source/devtools/front_end/HAREntry.js#newcode136 Source/devtools/front_end/HAREntry.js:136: function nextEventTime(events) { On 2013/09/13 15:24:07, caseq wrote: ...
7 years, 3 months ago (2013-09-16 10:06:22 UTC) #7
caseq
https://codereview.chromium.org/23308009/diff/17001/Source/devtools/front_end/HAREntry.js File Source/devtools/front_end/HAREntry.js (right): https://codereview.chromium.org/23308009/diff/17001/Source/devtools/front_end/HAREntry.js#newcode148 Source/devtools/front_end/HAREntry.js:148: if (timing.dnsStart > -1) nit: >= 0 https://codereview.chromium.org/23308009/diff/17001/Source/devtools/front_end/HAREntry.js#newcode149 Source/devtools/front_end/HAREntry.js:149: ...
7 years, 3 months ago (2013-09-17 16:56:22 UTC) #8
eustas
PTAL https://codereview.chromium.org/23308009/diff/17001/Source/devtools/front_end/HAREntry.js File Source/devtools/front_end/HAREntry.js (right): https://codereview.chromium.org/23308009/diff/17001/Source/devtools/front_end/HAREntry.js#newcode148 Source/devtools/front_end/HAREntry.js:148: if (timing.dnsStart > -1) On 2013/09/17 16:56:22, caseq ...
7 years, 3 months ago (2013-09-18 05:32:10 UTC) #9
caseq
lgtm https://codereview.chromium.org/23308009/diff/22001/Source/devtools/front_end/HAREntry.js File Source/devtools/front_end/HAREntry.js (right): https://codereview.chromium.org/23308009/diff/22001/Source/devtools/front_end/HAREntry.js#newcode142 Source/devtools/front_end/HAREntry.js:142: return -1; nit: console.assert(false, ...) here, as the ...
7 years, 3 months ago (2013-09-18 13:49:40 UTC) #10
eustas
https://codereview.chromium.org/23308009/diff/22001/Source/devtools/front_end/HAREntry.js File Source/devtools/front_end/HAREntry.js (right): https://codereview.chromium.org/23308009/diff/22001/Source/devtools/front_end/HAREntry.js#newcode142 Source/devtools/front_end/HAREntry.js:142: return -1; On 2013/09/18 13:49:40, caseq wrote: > nit: ...
7 years, 3 months ago (2013-09-18 16:25:51 UTC) #11
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/eustas@chromium.org/23308009/27001
7 years, 3 months ago (2013-09-18 16:26:23 UTC) #12
commit-bot: I haz the power
7 years, 3 months ago (2013-09-18 17:34:16 UTC) #13
Message was sent while issue was closed.
Change committed as 157971

Powered by Google App Engine
This is Rietveld 408576698