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

Issue 2472583003: Navigation Timing Level 2 (Closed)

Created:
4 years, 1 month ago by sunjian
Modified:
4 years, 1 month ago
CC:
chromium-reviews
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Implement Navigation Timing Level 2. Design doc link: https://docs.google.com/document/d/1DskJn3cKo8RlHxAKJqOSwYlN5mGLOHf3uWo5lwrUWu0/edit# BUG=504237 Committed: https://crrev.com/fbec30ffe38c608db610239c168df667cab6a454 Cr-Commit-Position: refs/heads/master@{#433765}

Patch Set 1 : First working version #

Total comments: 24

Patch Set 2 : Resolved comments #

Total comments: 13

Patch Set 3 : Resolved comments and also exposed Navigation Timing entry to performance.getEntriesByType and perf… #

Patch Set 4 : Added feature flag to getEntriesByName #

Total comments: 24

Patch Set 5 : resolved comments #

Patch Set 6 : added two TODOs and attached crbugs #

Total comments: 7

Patch Set 7 : added layout test #

Total comments: 10

Patch Set 8 : resolved comments #

Patch Set 9 : added TAO(timing-allow-origin) check and RA(redirect allow) check #

Total comments: 32

Patch Set 10 : addressed comments #

Total comments: 37

Patch Set 11 : addressed more comments #

Patch Set 12 : added one TODO #

Patch Set 13 : fixed layout tests #

Patch Set 14 : addressed layout test failures #

Total comments: 4

Patch Set 15 : addressed comments #

Patch Set 16 : don't provide nav timing info when visiting internal pages such as about:blank #

Patch Set 17 : revert to previous version #

Patch Set 18 : replaced old layout test with http layout test #

Total comments: 2

Patch Set 19 : addressed comments #

Patch Set 20 : synced cl #

Total comments: 5

Patch Set 21 : added runtime flag in idl and got rid of webexposed changes #

Patch Set 22 : fixed layout tests failure #

Unified diffs Side-by-side diffs Delta from patch set Stats (+525 lines, -20 lines) Patch
A third_party/WebKit/LayoutTests/http/tests/performance-timing/test-navigation-timing2-attributes-exist.html View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +72 lines, -0 lines 0 comments Download
M third_party/WebKit/LayoutTests/webexposed/global-interface-listing-expected.txt View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 21 1 chunk +14 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/core_idl_files.gni View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 chunks +8 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/timing/BUILD.gn View 1 chunk +2 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/timing/PerformanceBase.h View 1 2 3 4 5 6 7 8 9 3 chunks +4 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/timing/PerformanceBase.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 6 chunks +64 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/timing/PerformanceEntry.h View 1 2 3 4 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/core/timing/PerformanceEntry.cpp View 1 2 1 chunk +2 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +87 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp View 1 2 3 4 5 6 7 8 9 10 12 13 14 15 1 chunk +177 lines, -0 lines 0 comments Download
A third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.idl View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 1 chunk +27 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/timing/PerformanceResourceTiming.h View 5 chunks +21 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/core/timing/PerformanceResourceTiming.cpp View 1 2 3 4 1 chunk +43 lines, -14 lines 0 comments Download
M third_party/WebKit/Source/platform/RuntimeEnabledFeatures.in View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +2 lines, -0 lines 0 comments Download

Dependent Patchsets:

Messages

Total messages: 146 (80 generated)
sunjian
4 years, 1 month ago (2016-11-01 23:14:05 UTC) #2
panicker
https://codereview.chromium.org/2472583003/diff/1/third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp File third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp (right): https://codereview.chromium.org/2472583003/diff/1/third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp#newcode1403 third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp:1403: // This is unfortunately that we have to cast ...
4 years, 1 month ago (2016-11-02 20:12:38 UTC) #4
sunjian
https://codereview.chromium.org/2472583003/diff/1/third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp File third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp (right): https://codereview.chromium.org/2472583003/diff/1/third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp#newcode1403 third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp:1403: // This is unfortunately that we have to cast ...
4 years, 1 month ago (2016-11-04 01:12:39 UTC) #5
panicker
Looking pretty good. https://codereview.chromium.org/2472583003/diff/20001/third_party/WebKit/Source/core/timing/PerformanceBase.cpp File third_party/WebKit/Source/core/timing/PerformanceBase.cpp (right): https://codereview.chromium.org/2472583003/diff/20001/third_party/WebKit/Source/core/timing/PerformanceBase.cpp#newcode107 third_party/WebKit/Source/core/timing/PerformanceBase.cpp:107: m_userTiming(nullptr), initialize m_navigationTiming to nullptr https://codereview.chromium.org/2472583003/diff/20001/third_party/WebKit/Source/core/timing/PerformanceBase.cpp#newcode369 ...
4 years, 1 month ago (2016-11-04 18:55:33 UTC) #6
panicker
Yoav, Kinuko - review requested :)
4 years, 1 month ago (2016-11-04 18:58:06 UTC) #8
panicker
https://codereview.chromium.org/2472583003/diff/20001/third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp File third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp (right): https://codereview.chromium.org/2472583003/diff/20001/third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp#newcode161 third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp:161: // Methods that are overriden from PerformanceResourceTiming Let's not ...
4 years, 1 month ago (2016-11-04 19:46:36 UTC) #9
sunjian
https://codereview.chromium.org/2472583003/diff/20001/third_party/WebKit/Source/core/timing/PerformanceBase.cpp File third_party/WebKit/Source/core/timing/PerformanceBase.cpp (right): https://codereview.chromium.org/2472583003/diff/20001/third_party/WebKit/Source/core/timing/PerformanceBase.cpp#newcode369 third_party/WebKit/Source/core/timing/PerformanceBase.cpp:369: // TODO(sunjian) for now just set it to 0 ...
4 years, 1 month ago (2016-11-04 22:25:19 UTC) #10
kinuko
+ksakamoto@ who knows the timing code very well Haven't looked into design details yet but ...
4 years, 1 month ago (2016-11-06 15:16:43 UTC) #12
Kunihiko Sakamoto
Love to see a layout test :) NT1 tests in third_party/WebKit/LayoutTests/http/tests/w3c/webperf/approved/navigation-timing/ could be good examples. ...
4 years, 1 month ago (2016-11-07 07:53:18 UTC) #13
sunjian
https://codereview.chromium.org/2472583003/diff/60001/third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp File third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp (right): https://codereview.chromium.org/2472583003/diff/60001/third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp#newcode1408 third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp:1408: DCHECK(performance); On 2016/11/06 15:16:43, kinuko wrote: > nit: this ...
4 years, 1 month ago (2016-11-08 02:10:19 UTC) #14
kinuko
https://codereview.chromium.org/2472583003/diff/100001/third_party/WebKit/Source/core/timing/PerformanceBase.cpp File third_party/WebKit/Source/core/timing/PerformanceBase.cpp (right): https://codereview.chromium.org/2472583003/diff/100001/third_party/WebKit/Source/core/timing/PerformanceBase.cpp#newcode322 third_party/WebKit/Source/core/timing/PerformanceBase.cpp:322: const DocumentTiming docTiming = frame->document()->timing(); We don't usually abbreviate ...
4 years, 1 month ago (2016-11-08 13:39:32 UTC) #15
kinuko
On 2016/11/08 13:39:32, kinuko wrote: > https://codereview.chromium.org/2472583003/diff/100001/third_party/WebKit/Source/core/timing/PerformanceBase.cpp > File third_party/WebKit/Source/core/timing/PerformanceBase.cpp (right): > > https://codereview.chromium.org/2472583003/diff/100001/third_party/WebKit/Source/core/timing/PerformanceBase.cpp#newcode322 > ...
4 years, 1 month ago (2016-11-08 13:40:30 UTC) #16
panicker
Kinuko - thanks again for reviewing this CL (very appreciated!) https://codereview.chromium.org/2472583003/diff/100001/third_party/WebKit/Source/core/timing/PerformanceBase.cpp File third_party/WebKit/Source/core/timing/PerformanceBase.cpp (right): https://codereview.chromium.org/2472583003/diff/100001/third_party/WebKit/Source/core/timing/PerformanceBase.cpp#newcode160 ...
4 years, 1 month ago (2016-11-08 18:27:06 UTC) #17
sunjian
https://codereview.chromium.org/2472583003/diff/100001/third_party/WebKit/Source/core/timing/PerformanceBase.cpp File third_party/WebKit/Source/core/timing/PerformanceBase.cpp (right): https://codereview.chromium.org/2472583003/diff/100001/third_party/WebKit/Source/core/timing/PerformanceBase.cpp#newcode160 third_party/WebKit/Source/core/timing/PerformanceBase.cpp:160: if (entryType.isNull() || type == PerformanceEntry::Navigation) { On 2016/11/08 ...
4 years, 1 month ago (2016-11-08 23:16:21 UTC) #18
Kunihiko Sakamoto
Thanks for adding a layout test. Could you add another test case that include redirects? ...
4 years, 1 month ago (2016-11-09 10:03:08 UTC) #23
panicker
On 2016/11/09 10:03:08, Kunihiko Sakamoto wrote: > Thanks for adding a layout test. > Could ...
4 years, 1 month ago (2016-11-09 21:40:59 UTC) #24
sunjian
https://codereview.chromium.org/2472583003/diff/120001/third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp File third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp (right): https://codereview.chromium.org/2472583003/diff/120001/third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp#newcode87 third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp:87: return monotonicTimeToDOMHighResTimeStamp(m_timeOrigin, m_unloadEventStart); On 2016/11/09 10:03:08, Kunihiko Sakamoto wrote: ...
4 years, 1 month ago (2016-11-09 22:45:04 UTC) #25
sunjian
4 years, 1 month ago (2016-11-09 23:25:17 UTC) #26
panicker
LGTM https://codereview.chromium.org/2472583003/diff/120001/third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp File third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp (right): https://codereview.chromium.org/2472583003/diff/120001/third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp#newcode87 third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp:87: return monotonicTimeToDOMHighResTimeStamp(m_timeOrigin, m_unloadEventStart); On 2016/11/09 22:45:04, sunjian wrote: ...
4 years, 1 month ago (2016-11-09 23:35:03 UTC) #27
Kunihiko Sakamoto
Covering redirect cases in web-platform-tests SGTM. Please update the CL description as kinuko suggested. https://codereview.chromium.org/2472583003/diff/160001/third_party/WebKit/Source/core/timing/PerformanceBase.h ...
4 years, 1 month ago (2016-11-10 03:31:49 UTC) #28
Yoav Weiss
Apologies for the delay in review (travel...) I haven't yet finished fully reviewing this entire ...
4 years, 1 month ago (2016-11-10 14:58:58 UTC) #29
kinuko
Some more comments... thanks for adding tests! https://codereview.chromium.org/2472583003/diff/160001/third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp File third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp (right): https://codereview.chromium.org/2472583003/diff/160001/third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp#newcode1408 third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp:1408: DCHECK(performance); On ...
4 years, 1 month ago (2016-11-10 17:55:33 UTC) #30
panicker
https://codereview.chromium.org/2472583003/diff/160001/third_party/WebKit/Source/core/timing/PerformanceBase.cpp File third_party/WebKit/Source/core/timing/PerformanceBase.cpp (right): https://codereview.chromium.org/2472583003/diff/160001/third_party/WebKit/Source/core/timing/PerformanceBase.cpp#newcode318 third_party/WebKit/Source/core/timing/PerformanceBase.cpp:318: DCHECK(frame); On 2016/11/10 17:55:33, kinuko wrote: > We have ...
4 years, 1 month ago (2016-11-11 17:14:02 UTC) #31
sunjian
https://codereview.chromium.org/2472583003/diff/160001/third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp File third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp (right): https://codereview.chromium.org/2472583003/diff/160001/third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp#newcode1408 third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp:1408: DCHECK(performance); On 2016/11/10 14:58:58, Yoav Weiss wrote: > FWIW, ...
4 years, 1 month ago (2016-11-11 21:48:06 UTC) #32
sunjian
4 years, 1 month ago (2016-11-11 22:40:18 UTC) #36
Yoav Weiss
A few more comments. Also - test failures seem relevant (at least the webexposed/global-interface-listing.html ones) ...
4 years, 1 month ago (2016-11-12 17:13:48 UTC) #40
Yoav Weiss
Also, can you include a link to the I2S thread at this issue's description?
4 years, 1 month ago (2016-11-13 08:49:26 UTC) #41
Yoav Weiss
Overall the CL looks good. Thanks for you continuous work on this :) A few ...
4 years, 1 month ago (2016-11-13 13:48:02 UTC) #42
panicker
https://codereview.chromium.org/2472583003/diff/180001/third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp File third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp (right): https://codereview.chromium.org/2472583003/diff/180001/third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp#newcode1407 third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp:1407: Performance* performance = DOMWindowPerformance::performance(*this); these 2 lines can go ...
4 years, 1 month ago (2016-11-14 17:38:52 UTC) #43
panicker
https://codereview.chromium.org/2472583003/diff/180001/third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp File third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp (right): https://codereview.chromium.org/2472583003/diff/180001/third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp#newcode146 third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp:146: if (m_hasCrossOriginRedirect) Add a TODO & bug to follow ...
4 years, 1 month ago (2016-11-14 19:31:47 UTC) #44
Yoav Weiss
https://codereview.chromium.org/2472583003/diff/180001/third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp File third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp (right): https://codereview.chromium.org/2472583003/diff/180001/third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp#newcode58 third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp:58: true /*allowTimingDetails*/, On 2016/11/14 17:38:52, Shubhie wrote: > On ...
4 years, 1 month ago (2016-11-14 20:59:50 UTC) #45
sunjian
https://codereview.chromium.org/2472583003/diff/180001/third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp File third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp (right): https://codereview.chromium.org/2472583003/diff/180001/third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp#newcode1407 third_party/WebKit/Source/core/frame/LocalDOMWindow.cpp:1407: Performance* performance = DOMWindowPerformance::performance(*this); On 2016/11/14 17:38:52, Shubhie wrote: ...
4 years, 1 month ago (2016-11-14 22:12:28 UTC) #46
Yoav Weiss
https://codereview.chromium.org/2472583003/diff/180001/third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp File third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp (right): https://codereview.chromium.org/2472583003/diff/180001/third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp#newcode51 third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp:51: timing, On 2016/11/14 22:12:28, sunjian wrote: > On 2016/11/12 ...
4 years, 1 month ago (2016-11-14 23:02:52 UTC) #49
sunjian
On 2016/11/14 23:02:52, Yoav Weiss wrote: > https://codereview.chromium.org/2472583003/diff/180001/third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp > File third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp > (right): > > ...
4 years, 1 month ago (2016-11-15 00:01:14 UTC) #50
sunjian
On 2016/11/15 00:01:14, sunjian wrote: > On 2016/11/14 23:02:52, Yoav Weiss wrote: > > > ...
4 years, 1 month ago (2016-11-15 00:31:30 UTC) #53
panicker
On 2016/11/15 00:31:30, sunjian wrote: > On 2016/11/15 00:01:14, sunjian wrote: > > On 2016/11/14 ...
4 years, 1 month ago (2016-11-15 00:42:02 UTC) #54
Yoav Weiss
On 2016/11/15 00:42:02, Shubhie wrote: > On 2016/11/15 00:31:30, sunjian wrote: > > On 2016/11/15 ...
4 years, 1 month ago (2016-11-15 06:24:26 UTC) #59
Yoav Weiss
LGTM % webexposed/global-interface-listing.html failure, which seems relevant
4 years, 1 month ago (2016-11-15 07:40:03 UTC) #60
kinuko
https://codereview.chromium.org/2472583003/diff/260001/third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp File third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp (right): https://codereview.chromium.org/2472583003/diff/260001/third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp#newcode52 third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp:52: // null, if it can't, add DCHECK I think ...
4 years, 1 month ago (2016-11-16 01:05:13 UTC) #69
sunjian
https://codereview.chromium.org/2472583003/diff/260001/third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp File third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp (right): https://codereview.chromium.org/2472583003/diff/260001/third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp#newcode52 third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp:52: // null, if it can't, add DCHECK On 2016/11/16 ...
4 years, 1 month ago (2016-11-16 02:22:37 UTC) #71
kinuko
On 2016/11/16 02:22:37, sunjian wrote: > https://codereview.chromium.org/2472583003/diff/260001/third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp > File third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp > (right): > > https://codereview.chromium.org/2472583003/diff/260001/third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp#newcode52 ...
4 years, 1 month ago (2016-11-16 03:03:44 UTC) #73
kinuko
On 2016/11/16 03:03:44, kinuko wrote: > On 2016/11/16 02:22:37, sunjian wrote: > > > https://codereview.chromium.org/2472583003/diff/260001/third_party/WebKit/Source/core/timing/PerformanceNavigationTiming.cpp ...
4 years, 1 month ago (2016-11-16 03:04:53 UTC) #74
Yoav Weiss
On 2016/11/16 03:04:53, kinuko wrote: > On 2016/11/16 03:03:44, kinuko wrote: > > On 2016/11/16 ...
4 years, 1 month ago (2016-11-16 07:51:33 UTC) #77
sunjian
On 2016/11/16 07:51:33, Yoav Weiss wrote: > On 2016/11/16 03:04:53, kinuko wrote: > > On ...
4 years, 1 month ago (2016-11-17 01:06:29 UTC) #84
panicker
On 2016/11/17 01:06:29, sunjian wrote: > On 2016/11/16 07:51:33, Yoav Weiss wrote: > > On ...
4 years, 1 month ago (2016-11-17 01:15:08 UTC) #87
sunjian
4 years, 1 month ago (2016-11-18 00:44:18 UTC) #92
sunjian
PTAL. Did what Yoav suggested not exposing nav timing instance when ResourceLoadTiming doesn't exist. Moved ...
4 years, 1 month ago (2016-11-18 00:49:49 UTC) #93
kinuko
Thanks! lgtm for the part I care about (probably Yoav wants to take another look) ...
4 years, 1 month ago (2016-11-18 06:53:38 UTC) #96
Yoav Weiss
On 2016/11/18 06:53:38, kinuko wrote: > Thanks! lgtm for the part I care about (probably ...
4 years, 1 month ago (2016-11-18 08:35:11 UTC) #97
sunjian
https://codereview.chromium.org/2472583003/diff/340001/third_party/WebKit/Source/core/timing/PerformanceBase.cpp File third_party/WebKit/Source/core/timing/PerformanceBase.cpp (right): https://codereview.chromium.org/2472583003/diff/340001/third_party/WebKit/Source/core/timing/PerformanceBase.cpp#newcode327 third_party/WebKit/Source/core/timing/PerformanceBase.cpp:327: // such as about:blank On 2016/11/18 06:53:38, kinuko wrote: ...
4 years, 1 month ago (2016-11-18 18:19:01 UTC) #103
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/2472583003/360001
4 years, 1 month ago (2016-11-18 18:19:41 UTC) #106
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/308402)
4 years, 1 month ago (2016-11-18 18:34:20 UTC) #108
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/2472583003/380001
4 years, 1 month ago (2016-11-18 20:26:58 UTC) #111
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/2472583003/380001
4 years, 1 month ago (2016-11-18 21:11:06 UTC) #116
panicker
On 2016/11/18 21:11:06, commit-bot: I haz the power wrote: > CQ is trying da patch. ...
4 years, 1 month ago (2016-11-18 21:46:04 UTC) #117
panicker
On 2016/11/18 21:46:04, Shubhie wrote: > On 2016/11/18 21:11:06, commit-bot: I haz the power wrote: ...
4 years, 1 month ago (2016-11-18 21:48:24 UTC) #118
panicker
Rick, Philip - could one of you please approve for API_OWNERS for the updates made ...
4 years, 1 month ago (2016-11-18 21:50:22 UTC) #120
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/308571)
4 years, 1 month ago (2016-11-18 22:04:41 UTC) #122
panicker
On 2016/11/18 22:04:41, commit-bot: I haz the power wrote: > Try jobs failed on following ...
4 years, 1 month ago (2016-11-21 18:43:01 UTC) #124
Rick Byers
Due to the approved intent-to-ship (https://groups.google.com/a/chromium.org/d/msg/blink-dev/AT7aqhPcNdw/10jQ2B0HAQAJ) I assumed this CL was intending to ship the ...
4 years, 1 month ago (2016-11-21 19:05:01 UTC) #127
panicker
That's right we have a few more TODOs remaining, including addition of tests. A future ...
4 years, 1 month ago (2016-11-21 19:24:39 UTC) #129
sunjian
https://codereview.chromium.org/2472583003/diff/380001/third_party/WebKit/Source/core/timing/PerformanceBase.cpp File third_party/WebKit/Source/core/timing/PerformanceBase.cpp (right): https://codereview.chromium.org/2472583003/diff/380001/third_party/WebKit/Source/core/timing/PerformanceBase.cpp#newcode313 third_party/WebKit/Source/core/timing/PerformanceBase.cpp:313: if (!RuntimeEnabledFeatures::performanceNavigationTiming2Enabled()) On 2016/11/21 19:05:01, Rick Byers wrote: > ...
4 years, 1 month ago (2016-11-21 21:25:17 UTC) #133
Rick Byers
On 2016/11/21 19:24:39, Shubhie wrote: > That's right we have a few more TODOs remaining, ...
4 years, 1 month ago (2016-11-21 22:52:24 UTC) #136
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/2472583003/420001
4 years, 1 month ago (2016-11-22 00:30:31 UTC) #141
commit-bot: I haz the power
Committed patchset #22 (id:420001)
4 years, 1 month ago (2016-11-22 03:10:53 UTC) #144
commit-bot: I haz the power
4 years, 1 month ago (2016-11-22 03:14:37 UTC) #146
Message was sent while issue was closed.
Patchset 22 (id:??) landed as
https://crrev.com/fbec30ffe38c608db610239c168df667cab6a454
Cr-Commit-Position: refs/heads/master@{#433765}

Powered by Google App Engine
This is Rietveld 408576698