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

Issue 2511313002: transferSize implementation (Closed)

Created:
4 years, 1 month ago by sunjian
Modified:
4 years ago
CC:
chromium-reviews, tyoshino+watch_chromium.org, loading-reviews_chromium.org, gavinp+loader_chromium.org, blink-reviews, loading-reviews+fetch_chromium.org
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

TransferSize implementation. BUG=663187 Committed: https://crrev.com/aa066fd6ef4f2546faafdaf3abcb328fc6cc709c Cr-Commit-Position: refs/heads/master@{#437946}

Patch Set 1 #

Total comments: 4

Patch Set 2 : addressed the issue of m_mainResource's identifier being 0 in DocumentLoader.h #

Patch Set 3 : add nullptr checking against m_mainResource #

Total comments: 2

Patch Set 4 : minor changes #

Total comments: 2

Patch Set 5 : added TODO #

Total comments: 8

Patch Set 6 : addressed comments #

Total comments: 4

Patch Set 7 : addressed comments #

Total comments: 15

Patch Set 8 : addressed comments #

Total comments: 2

Patch Set 9 : addressed comments #

Total comments: 2

Patch Set 10 : addressed comments #

Patch Set 11 : added unit tests #

Patch Set 12 : Got rid of DCHECKS cause they don't stand any more #

Total comments: 4

Patch Set 13 : addressed comments #

Total comments: 6

Patch Set 14 : fixed unit tests DCHECK failures #

Patch Set 15 : report iframes' navigation timing info #

Total comments: 7

Patch Set 16 : addressed comments #

Total comments: 2

Patch Set 17 : addressed comments #

Total comments: 6

Patch Set 18 : addressed comments #

Unified diffs Side-by-side diffs Delta from patch set Stats (+105 lines, -17 lines) Patch
M third_party/WebKit/Source/core/fetch/ResourceFetcher.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 3 chunks +6 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 10 chunks +45 lines, -14 lines 0 comments Download
M third_party/WebKit/Source/core/fetch/ResourceFetcherTest.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +41 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/loader/DocumentLoader.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 2 chunks +3 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/loader/DocumentLoader.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +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 2 chunks +6 lines, -2 lines 0 comments Download

Dependent Patchsets:

Messages

Total messages: 101 (49 generated)
sunjian
4 years, 1 month ago (2016-11-18 00:56:23 UTC) #3
Yoav Weiss
https://codereview.chromium.org/2511313002/diff/1/third_party/WebKit/Source/core/loader/DocumentLoader.cpp File third_party/WebKit/Source/core/loader/DocumentLoader.cpp (right): https://codereview.chromium.org/2511313002/diff/1/third_party/WebKit/Source/core/loader/DocumentLoader.cpp#newcode324 third_party/WebKit/Source/core/loader/DocumentLoader.cpp:324: performance->addNavigationTiming(m_frame, getMainResourceTimingInfo()); I may be wrong but I don't ...
4 years, 1 month ago (2016-11-18 10:06:30 UTC) #4
sunjian
https://codereview.chromium.org/2511313002/diff/1/third_party/WebKit/Source/core/loader/DocumentLoader.cpp File third_party/WebKit/Source/core/loader/DocumentLoader.cpp (right): https://codereview.chromium.org/2511313002/diff/1/third_party/WebKit/Source/core/loader/DocumentLoader.cpp#newcode324 third_party/WebKit/Source/core/loader/DocumentLoader.cpp:324: performance->addNavigationTiming(m_frame, getMainResourceTimingInfo()); On 2016/11/18 10:06:30, Yoav Weiss wrote: > ...
4 years, 1 month ago (2016-11-18 20:23:29 UTC) #5
panicker
Looks reasonable to me. Yoav, WDYT? https://codereview.chromium.org/2511313002/diff/40001/third_party/WebKit/Source/core/fetch/ResourceFetcher.h File third_party/WebKit/Source/core/fetch/ResourceFetcher.h (right): https://codereview.chromium.org/2511313002/diff/40001/third_party/WebKit/Source/core/fetch/ResourceFetcher.h#newcode241 third_party/WebKit/Source/core/fetch/ResourceFetcher.h:241: HashMap<unsigned long, std::unique_ptr<ResourceTimingInfo>>; ...
4 years, 1 month ago (2016-11-22 02:17:42 UTC) #7
sunjian
https://codereview.chromium.org/2511313002/diff/40001/third_party/WebKit/Source/core/fetch/ResourceFetcher.h File third_party/WebKit/Source/core/fetch/ResourceFetcher.h (right): https://codereview.chromium.org/2511313002/diff/40001/third_party/WebKit/Source/core/fetch/ResourceFetcher.h#newcode241 third_party/WebKit/Source/core/fetch/ResourceFetcher.h:241: HashMap<unsigned long, std::unique_ptr<ResourceTimingInfo>>; On 2016/11/22 02:17:42, Shubhie wrote: > ...
4 years, 1 month ago (2016-11-22 02:39:21 UTC) #10
Yoav Weiss
https://codereview.chromium.org/2511313002/diff/100001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp File third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp (right): https://codereview.chromium.org/2511313002/diff/100001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp#newcode1126 third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp:1126: unsigned long identifier) { IIUC, this is only ever ...
4 years, 1 month ago (2016-11-22 10:26:23 UTC) #11
sunjian
https://codereview.chromium.org/2511313002/diff/100001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp File third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp (right): https://codereview.chromium.org/2511313002/diff/100001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp#newcode1126 third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp:1126: unsigned long identifier) { On 2016/11/22 10:26:23, Yoav Weiss ...
4 years ago (2016-11-22 22:25:44 UTC) #12
sunjian
4 years ago (2016-11-22 22:26:36 UTC) #14
panicker
4 years ago (2016-11-22 22:28:33 UTC) #16
Yoav Weiss
On 2016/11/22 22:25:44, sunjian wrote: > https://codereview.chromium.org/2511313002/diff/100001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp > File third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp (right): > > https://codereview.chromium.org/2511313002/diff/100001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp#newcode1126 > ...
4 years ago (2016-11-25 08:02:42 UTC) #17
sunjian
On 2016/11/25 08:02:42, Yoav Weiss wrote: > On 2016/11/22 22:25:44, sunjian wrote: > > > ...
4 years ago (2016-11-28 21:27:57 UTC) #18
sunjian
Added a TODO and bug for the map issue Yoav mentioned.
4 years ago (2016-11-29 00:49:32 UTC) #19
Yoav Weiss
https://codereview.chromium.org/2511313002/diff/120001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp File third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp (right): https://codereview.chromium.org/2511313002/diff/120001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp#newcode755 third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp:755: void ResourceFetcher::storeResourceTimingInitiatorInformation( Can you change this method's name, as ...
4 years ago (2016-11-29 10:39:32 UTC) #20
sunjian
https://codereview.chromium.org/2511313002/diff/120001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp File third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp (right): https://codereview.chromium.org/2511313002/diff/120001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp#newcode755 third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp:755: void ResourceFetcher::storeResourceTimingInitiatorInformation( On 2016/11/29 10:39:32, Yoav Weiss wrote: > ...
4 years ago (2016-11-29 19:33:30 UTC) #21
panicker
https://codereview.chromium.org/2511313002/diff/120001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp File third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp (right): https://codereview.chromium.org/2511313002/diff/120001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp#newcode783 third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp:783: m_mainResourceTimingInfoMap.add(resource->identifier(), std::move(info)); On 2016/11/29 19:33:30, sunjian wrote: > On ...
4 years ago (2016-11-30 00:12:15 UTC) #23
kinuko
https://codereview.chromium.org/2511313002/diff/120001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp File third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp (right): https://codereview.chromium.org/2511313002/diff/120001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp#newcode783 third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp:783: m_mainResourceTimingInfoMap.add(resource->identifier(), std::move(info)); On 2016/11/30 00:12:15, Shubhie wrote: > On ...
4 years ago (2016-11-30 07:08:26 UTC) #24
kinuko
https://codereview.chromium.org/2511313002/diff/140001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp File third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp (right): https://codereview.chromium.org/2511313002/diff/140001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp#newcode1156 third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp:1156: // Store redirect responses that were packed inside the ...
4 years ago (2016-11-30 07:34:54 UTC) #25
sunjian
https://codereview.chromium.org/2511313002/diff/140001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp File third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp (right): https://codereview.chromium.org/2511313002/diff/140001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp#newcode1156 third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp:1156: // Store redirect responses that were packed inside the ...
4 years ago (2016-12-01 21:21:59 UTC) #27
Yoav Weiss
Thanks for your work on this :) Could you add some tests to make sure ...
4 years ago (2016-12-01 21:53:55 UTC) #29
sunjian
https://codereview.chromium.org/2511313002/diff/160001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp File third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp (right): https://codereview.chromium.org/2511313002/diff/160001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp#newcode106 third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp:106: void addRedirectsToResourceTimingInfo(Resource* resource, On 2016/12/01 21:53:55, Yoav Weiss wrote: ...
4 years ago (2016-12-01 23:28:42 UTC) #32
kinuko
Looking good to me. Are you thinking about proceeding with this CL further? The description ...
4 years ago (2016-12-02 00:44:55 UTC) #33
sunjian
On 2016/12/02 00:44:55, kinuko wrote: > Looking good to me. Are you thinking about proceeding ...
4 years ago (2016-12-02 00:59:32 UTC) #35
sunjian
https://codereview.chromium.org/2511313002/diff/180001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp File third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp (right): https://codereview.chromium.org/2511313002/diff/180001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp#newcode1435 third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp:1435: DCHECK(resource->identifier() == m_mainResourceIdentifier); On 2016/12/02 00:44:55, kinuko wrote: > ...
4 years ago (2016-12-02 01:02:53 UTC) #36
Yoav Weiss
https://codereview.chromium.org/2511313002/diff/160001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp File third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp (right): https://codereview.chromium.org/2511313002/diff/160001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp#newcode106 third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp:106: void addRedirectsToResourceTimingInfo(Resource* resource, On 2016/12/01 23:28:42, sunjian wrote: > ...
4 years ago (2016-12-02 07:10:05 UTC) #37
Yoav Weiss
https://codereview.chromium.org/2511313002/diff/200001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp File third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp (right): https://codereview.chromium.org/2511313002/diff/200001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp#newcode260 third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp:260: m_mainResourceIdentifier(0), This assumes a resource's identifier is never 0. ...
4 years ago (2016-12-02 07:42:49 UTC) #38
sunjian
Addressed comments and added unit tests. https://codereview.chromium.org/2511313002/diff/160001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp File third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp (right): https://codereview.chromium.org/2511313002/diff/160001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp#newcode106 third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp:106: void addRedirectsToResourceTimingInfo(Resource* resource, ...
4 years ago (2016-12-03 00:16:50 UTC) #39
sunjian
Some updates on DCHECKS in getMainResourceTimingInfo() in ResourceFetcher.
4 years ago (2016-12-03 01:40:22 UTC) #44
Yoav Weiss
On 2016/12/03 00:16:50, sunjian wrote: > Addressed comments and added unit tests. > > https://codereview.chromium.org/2511313002/diff/160001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp ...
4 years ago (2016-12-03 19:45:03 UTC) #49
Yoav Weiss
Test failures seem relevant https://codereview.chromium.org/2511313002/diff/260001/third_party/WebKit/Source/core/fetch/ResourceFetcher.h File third_party/WebKit/Source/core/fetch/ResourceFetcher.h (right): https://codereview.chromium.org/2511313002/diff/260001/third_party/WebKit/Source/core/fetch/ResourceFetcher.h#newcode162 third_party/WebKit/Source/core/fetch/ResourceFetcher.h:162: // Calling this method before ...
4 years ago (2016-12-03 19:55:35 UTC) #50
sunjian
On 2016/12/03 19:45:03, Yoav Weiss wrote: > On 2016/12/03 00:16:50, sunjian wrote: > > Addressed ...
4 years ago (2016-12-05 19:04:54 UTC) #51
Yoav Weiss
Almost. Added a comment where such a DCHECK would be useful https://codereview.chromium.org/2511313002/diff/260001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp File third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp (right): ...
4 years ago (2016-12-05 19:21:04 UTC) #52
Nate Chapin
Just a couple of questions, sorry if they were covered already and I missed them ...
4 years ago (2016-12-06 20:07:50 UTC) #62
panicker
https://codereview.chromium.org/2511313002/diff/300001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp File third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp (right): https://codereview.chromium.org/2511313002/diff/300001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp#newcode1169 third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp:1169: resource->identifier() == m_mainResourceIdentifier) { On 2016/12/06 20:07:50, Nate Chapin ...
4 years ago (2016-12-07 00:49:00 UTC) #63
Yoav Weiss
https://codereview.chromium.org/2511313002/diff/300001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp File third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp (right): https://codereview.chromium.org/2511313002/diff/300001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp#newcode1169 third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp:1169: resource->identifier() == m_mainResourceIdentifier) { On 2016/12/06 20:07:50, Nate Chapin ...
4 years ago (2016-12-07 01:26:37 UTC) #64
Nate Chapin
On 2016/12/07 01:26:37, Yoav Weiss wrote: > https://codereview.chromium.org/2511313002/diff/300001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp > File third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp (right): > > https://codereview.chromium.org/2511313002/diff/300001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp#newcode1169 ...
4 years ago (2016-12-07 18:11:43 UTC) #65
Yoav Weiss
On 2016/12/07 18:11:43, Nate Chapin (slow until Jan 3) wrote: > On 2016/12/07 01:26:37, Yoav ...
4 years ago (2016-12-07 18:15:42 UTC) #66
sunjian
https://codereview.chromium.org/2511313002/diff/260001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp File third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp (right): https://codereview.chromium.org/2511313002/diff/260001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp#newcode800 third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp:800: m_mainResourceIdentifier = resource->identifier(); On 2016/12/05 19:21:04, Yoav Weiss wrote: ...
4 years ago (2016-12-07 19:09:50 UTC) #67
sunjian
4 years ago (2016-12-08 01:58:53 UTC) #73
panicker
Minor nits to remove obsolete comments. https://codereview.chromium.org/2511313002/diff/340001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp File third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp (right): https://codereview.chromium.org/2511313002/diff/340001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp#newcode1141 third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp:1141: // m_navigationTimingInfo can ...
4 years ago (2016-12-08 20:47:06 UTC) #77
Yoav Weiss
LGTM % a test for the iframe case. Thanks for your continuous work on this ...
4 years ago (2016-12-09 00:10:53 UTC) #81
Yoav Weiss
https://codereview.chromium.org/2511313002/diff/340001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp File third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp (right): https://codereview.chromium.org/2511313002/diff/340001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp#newcode796 third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp:796: if (isMainResource) { Could you add a test for ...
4 years ago (2016-12-09 00:11:13 UTC) #82
sunjian
On 2016/12/09 00:11:13, Yoav Weiss wrote: > https://codereview.chromium.org/2511313002/diff/340001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp > File third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp (right): > > https://codereview.chromium.org/2511313002/diff/340001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp#newcode796 ...
4 years ago (2016-12-09 00:27:03 UTC) #83
Yoav Weiss
On 2016/12/09 00:27:03, sunjian wrote: > On 2016/12/09 00:11:13, Yoav Weiss wrote: > > > ...
4 years ago (2016-12-09 00:29:48 UTC) #86
sunjian
On 2016/12/09 00:29:48, Yoav Weiss wrote: > On 2016/12/09 00:27:03, sunjian wrote: > > On ...
4 years ago (2016-12-09 00:48:58 UTC) #87
sunjian
https://codereview.chromium.org/2511313002/diff/340001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp File third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp (right): https://codereview.chromium.org/2511313002/diff/340001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp#newcode1141 third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp:1141: // m_navigationTimingInfo can be null if it is an ...
4 years ago (2016-12-09 00:50:12 UTC) #88
Yoav Weiss
On 2016/12/09 00:48:58, sunjian wrote: > On 2016/12/09 00:29:48, Yoav Weiss wrote: > > On ...
4 years ago (2016-12-09 00:50:35 UTC) #89
tyoshino (SeeGerritForStatus)
https://codereview.chromium.org/2511313002/diff/400001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp File third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp (right): https://codereview.chromium.org/2511313002/diff/400001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp#newcode117 third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp:117: } It looks PerformanceResourceTiming is constructed with the result ...
4 years ago (2016-12-09 07:35:59 UTC) #90
panicker
https://codereview.chromium.org/2511313002/diff/400001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp File third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp (right): https://codereview.chromium.org/2511313002/diff/400001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp#newcode117 third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp:117: } On 2016/12/09 07:35:58, tyoshino wrote: > It looks ...
4 years ago (2016-12-09 17:47:15 UTC) #91
Yoav Weiss
https://codereview.chromium.org/2511313002/diff/400001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp File third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp (right): https://codereview.chromium.org/2511313002/diff/400001/third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp#newcode1176 third_party/WebKit/Source/core/fetch/ResourceFetcher.cpp:1176: } On 2016/12/09 17:47:15, panicker wrote: > On 2016/12/09 ...
4 years ago (2016-12-11 06:21:32 UTC) #92
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/2511313002/440001
4 years ago (2016-12-12 20:06:45 UTC) #96
commit-bot: I haz the power
Committed patchset #18 (id:440001)
4 years ago (2016-12-12 23:14:52 UTC) #99
commit-bot: I haz the power
4 years ago (2016-12-12 23:17:24 UTC) #101
Message was sent while issue was closed.
Patchset 18 (id:??) landed as
https://crrev.com/aa066fd6ef4f2546faafdaf3abcb328fc6cc709c
Cr-Commit-Position: refs/heads/master@{#437946}

Powered by Google App Engine
This is Rietveld 408576698