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

Issue 2244813002: LongTaskTiming: add idl, Experiment flag, PerformanceEntry and basic implementation (Closed)

Created:
4 years, 4 months ago by panicker
Modified:
4 years, 3 months ago
Reviewers:
haraken, nduca
CC:
blink-reviews, chromium-reviews
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

LongTaskTiming: add idl, Experiment flag, PerformanceEntry and basic implementation BUG=635596 Committed: https://crrev.com/67ecd9023c61fcf77899dbeca071f5f35aabb8f0 Cr-Commit-Position: refs/heads/master@{#414257}

Patch Set 1 #

Patch Set 2 : Add a test for addLongTaskTiming #

Patch Set 3 : fix indent #

Total comments: 2

Patch Set 4 : address review comment #

Total comments: 8

Patch Set 5 : address haraken's review comments #

Patch Set 6 : merge conflict #

Patch Set 7 : update layout tests expectations #

Patch Set 8 : fix merge issue in flags #

Unified diffs Side-by-side diffs Delta from patch set Stats (+183 lines, -6 lines) Patch
M third_party/WebKit/LayoutTests/fast/dom/Window/property-access-on-cached-properties-after-frame-navigated-expected.txt View 1 2 3 4 5 6 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/LayoutTests/fast/dom/Window/property-access-on-cached-properties-after-frame-removed-and-gced-expected.txt View 1 2 3 4 5 6 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/LayoutTests/fast/dom/Window/property-access-on-cached-properties-after-frame-removed-expected.txt View 1 2 3 4 5 6 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/LayoutTests/fast/dom/Window/property-access-on-cached-window-after-frame-navigated-expected.txt View 1 2 3 4 5 6 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/LayoutTests/fast/dom/Window/property-access-on-cached-window-after-frame-removed-and-gced-expected.txt View 1 2 3 4 5 6 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/LayoutTests/fast/dom/Window/property-access-on-cached-window-after-frame-removed-expected.txt View 1 2 3 4 5 6 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/LayoutTests/fast/dom/Window/window-properties-performance-expected.txt View 1 2 3 4 5 6 2 chunks +3 lines, -0 lines 0 comments Download
M third_party/WebKit/LayoutTests/webexposed/global-interface-listing-expected.txt View 1 2 3 4 5 6 3 chunks +7 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/core.gypi View 1 2 3 4 5 6 2 chunks +3 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/events/EventTypeNames.in View 1 2 3 4 5 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/core/timing/Performance.idl View 1 chunk +5 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/timing/PerformanceBase.h View 1 2 3 4 chunks +15 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/core/timing/PerformanceBase.cpp View 1 2 3 4 8 chunks +52 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/timing/PerformanceBaseTest.cpp View 1 2 3 chunks +26 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/timing/PerformanceEntry.h View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/core/timing/PerformanceEntry.cpp View 1 chunk +2 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/core/timing/PerformanceLongTaskTiming.h View 1 2 3 4 1 chunk +34 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/core/timing/PerformanceLongTaskTiming.cpp View 1 2 3 4 1 chunk +24 lines, -0 lines 0 comments Download
A + third_party/WebKit/Source/core/timing/PerformanceLongTaskTiming.idl View 1 chunk +3 lines, -3 lines 0 comments Download
M third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in View 1 2 3 4 5 6 7 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 42 (21 generated)
panicker
Hey Kentaro, may I request a code review for this? Feel free to suggest alternate ...
4 years, 4 months ago (2016-08-12 21:39:54 UTC) #2
haraken
On 2016/08/12 21:39:54, Shubhie wrote: > Hey Kentaro, > may I request a code review ...
4 years, 4 months ago (2016-08-13 01:58:36 UTC) #3
panicker
On 2016/08/13 01:58:36, haraken wrote: > On 2016/08/12 21:39:54, Shubhie wrote: > > Hey Kentaro, ...
4 years, 4 months ago (2016-08-15 16:27:35 UTC) #6
nduca
lgtm with nit :) https://codereview.chromium.org/2244813002/diff/40001/third_party/WebKit/Source/core/timing/PerformanceBase.cpp File third_party/WebKit/Source/core/timing/PerformanceBase.cpp (right): https://codereview.chromium.org/2244813002/diff/40001/third_party/WebKit/Source/core/timing/PerformanceBase.cpp#newcode345 third_party/WebKit/Source/core/timing/PerformanceBase.cpp:345: void PerformanceBase::addLongTaskTiming(double startTime, double endTime, ...
4 years, 4 months ago (2016-08-16 22:11:22 UTC) #7
panicker
Thanks for the review, Nat. Kentaro - mind taking a look? :) https://codereview.chromium.org/2244813002/diff/40001/third_party/WebKit/Source/core/timing/PerformanceBase.cpp File third_party/WebKit/Source/core/timing/PerformanceBase.cpp ...
4 years, 4 months ago (2016-08-16 22:44:38 UTC) #8
haraken
Mostly looks good. https://codereview.chromium.org/2244813002/diff/60001/third_party/WebKit/Source/core/timing/Performance.idl File third_party/WebKit/Source/core/timing/Performance.idl (right): https://codereview.chromium.org/2244813002/diff/60001/third_party/WebKit/Source/core/timing/Performance.idl#newcode80 third_party/WebKit/Source/core/timing/Performance.idl:80: [RuntimeEnabled=LongTaskObserver] void clearLongTaskTimings(); Would it make ...
4 years, 4 months ago (2016-08-17 01:15:48 UTC) #9
panicker
Thanks for the review! PTAL. https://codereview.chromium.org/2244813002/diff/60001/third_party/WebKit/Source/core/timing/Performance.idl File third_party/WebKit/Source/core/timing/Performance.idl (right): https://codereview.chromium.org/2244813002/diff/60001/third_party/WebKit/Source/core/timing/Performance.idl#newcode80 third_party/WebKit/Source/core/timing/Performance.idl:80: [RuntimeEnabled=LongTaskObserver] void clearLongTaskTimings(); On ...
4 years, 4 months ago (2016-08-17 19:00:09 UTC) #10
haraken
The implementation looks good. Can we add layout tests for this?
4 years, 4 months ago (2016-08-18 01:00:00 UTC) #11
panicker
On 2016/08/18 01:00:00, haraken wrote: > The implementation looks good. > > Can we add ...
4 years, 4 months ago (2016-08-18 17:51:29 UTC) #12
panickercorp
On 2016/08/18 17:51:29, Shubhie wrote: > On 2016/08/18 01:00:00, haraken wrote: > > The implementation ...
4 years, 4 months ago (2016-08-18 18:05:21 UTC) #13
haraken
On 2016/08/18 18:05:21, panicker wrote: > On 2016/08/18 17:51:29, Shubhie wrote: > > On 2016/08/18 ...
4 years, 4 months ago (2016-08-19 01:09:09 UTC) #14
panicker
On 2016/08/19 01:09:09, haraken wrote: > On 2016/08/18 18:05:21, panicker wrote: > > On 2016/08/18 ...
4 years, 4 months ago (2016-08-23 03:00:05 UTC) #15
haraken
On 2016/08/23 03:00:05, Shubhie wrote: > On 2016/08/19 01:09:09, haraken wrote: > > On 2016/08/18 ...
4 years, 4 months ago (2016-08-23 04:05:02 UTC) #16
panicker
On 2016/08/23 04:05:02, haraken wrote: > On 2016/08/23 03:00:05, Shubhie wrote: > > On 2016/08/19 ...
4 years, 4 months ago (2016-08-23 04:17:51 UTC) #17
haraken
On 2016/08/23 04:17:51, Shubhie wrote: > On 2016/08/23 04:05:02, haraken wrote: > > On 2016/08/23 ...
4 years, 4 months ago (2016-08-23 04:20:42 UTC) #18
panicker
On 2016/08/23 04:20:42, haraken wrote: > On 2016/08/23 04:17:51, Shubhie wrote: > > On 2016/08/23 ...
4 years, 4 months ago (2016-08-23 04:23:52 UTC) #19
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/2244813002/140001
4 years, 3 months ago (2016-08-24 20:21:17 UTC) #34
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_chromeos_rel_ng on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_chromeos_rel_ng/builds/266927)
4 years, 3 months ago (2016-08-24 23:00:35 UTC) #36
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/2244813002/140001
4 years, 3 months ago (2016-08-25 00:56:32 UTC) #38
commit-bot: I haz the power
Committed patchset #8 (id:140001)
4 years, 3 months ago (2016-08-25 02:17:28 UTC) #40
commit-bot: I haz the power
4 years, 3 months ago (2016-08-25 02:20:57 UTC) #42
Message was sent while issue was closed.
Patchset 8 (id:??) landed as
https://crrev.com/67ecd9023c61fcf77899dbeca071f5f35aabb8f0
Cr-Commit-Position: refs/heads/master@{#414257}

Powered by Google App Engine
This is Rietveld 408576698