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

Issue 1772603002: Addition of Certificate Transparency details to Security panel of DevTools (Closed)

Created:
4 years, 9 months ago by dwaxweiler
Modified:
4 years, 5 months ago
CC:
apavlov+blink_chromium.org, blink-reviews, blink-reviews-api_chromium.org, caseq+blink_chromium.org, cbentzel+watch_chromium.org, certificate-transparency-chrome_googlegroups.com, chromium-reviews, darin-cc_chromium.org, devtools-reviews_chromium.org, dglazkov+blink, jam, kinuko+watch, kozyatinskiy+blink_chromium.org, loading-reviews_chromium.org, lushnikov+blink_chromium.org, palmer, pfeldman+blink_chromium.org, pfeldman, Randy Smith (Not in Mondays), sergeyv+blink_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Addition of Certificate Transparency details to Security panel of DevTools The Signed Certificate Timestamps (SCTs) are listed in detail in the Security panel of the DevTools. BUG=591848 TEST=Visit a website whose certificate has Certificate Transparency information like mozilla.org, open the Security panel in DevTools, refresh and click on "https://www.mozilla.org" under "Main Origin". You should see three SCT sections underneath the certificate section. Committed: https://crrev.com/0e8fdc2e0d2d4d88a5552f5ba7d283d4c1fa7588 Cr-Commit-Position: refs/heads/master@{#402577}

Patch Set 1 #

Total comments: 17

Patch Set 2 : reacted to comments by Eran #

Patch Set 3 : added missing newly created files #

Patch Set 4 : a few layout changes to make sure nothing is cut off #

Patch Set 5 : removed SignedCertificateTimestampStore and SignedCertificateTimestampIDStatus(List) #

Total comments: 8

Patch Set 6 : fixed IPC bug & improved layout in DevTools #

Patch Set 7 : removed a few unnecessary lines #

Patch Set 8 : made a few small layout improvements #

Patch Set 9 : hide CT section in DevTools if there are no SCTs #

Patch Set 10 : rebase #

Patch Set 11 : removed some unnecessary includes and fixed order in net.gypi #

Total comments: 16

Patch Set 12 : reacted to comments of Eran and palmer #

Patch Set 13 : rebased & auto-formatted #

Patch Set 14 : fixed merging issue #

Total comments: 7

Patch Set 15 : renamed a variable #

Total comments: 18

Patch Set 16 : rebase #

Patch Set 17 : removed version, renamed Blink variables, simplified some comments, handled a few MAX values #

Total comments: 21

Patch Set 18 : reacted to comments of dgozman #

Total comments: 6

Patch Set 19 : rebase #

Patch Set 20 : reacted to further comments of dgozman #

Patch Set 21 : fixed NetLog token #

Total comments: 9

Patch Set 22 : reacted to comments of davidben #

Patch Set 23 : changed a dictionary key #

Total comments: 18

Patch Set 24 : reacted to comments of Charlie and Mike #

Total comments: 3

Patch Set 25 : removed interpret_casts #

Patch Set 26 : rebase #

Unified diffs Side-by-side diffs Delta from patch set Stats (+364 lines, -71 lines) Patch
M content/child/web_url_loader_impl.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 6 chunks +33 lines, -6 lines 0 comments Download
A net/cert/ct_sct_to_string.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 1 chunk +39 lines, -0 lines 0 comments Download
A net/cert/ct_sct_to_string.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 1 chunk +79 lines, -0 lines 0 comments Download
M net/cert/ct_signed_certificate_timestamp_log_param.cc View 1 2 3 4 5 6 7 8 9 10 11 21 22 2 chunks +1 line, -56 lines 0 comments Download
M net/cert/multi_log_ct_verifier_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 1 chunk +1 line, -1 line 0 comments Download
M net/log/net_log_event_type_list.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 1 chunk +1 line, -1 line 0 comments Download
M net/net.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 1 chunk +2 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/inspector/InspectorNetworkAgent.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 1 chunk +18 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/inspector/browser_protocol.json View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 2 chunks +17 lines, -1 line 0 comments Download
M third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 2 chunks +53 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/devtools/front_end/security/originView.css View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +15 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/platform/exported/WebURLResponse.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 2 chunks +5 lines, -1 line 0 comments Download
M third_party/WebKit/Source/platform/network/ResourceResponse.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 4 chunks +39 lines, -2 lines 0 comments Download
M third_party/WebKit/Source/platform/network/ResourceResponse.cpp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 5 chunks +17 lines, -1 line 0 comments Download
M third_party/WebKit/public/platform/WebURLResponse.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 3 chunks +44 lines, -1 line 0 comments Download

Messages

Total messages: 123 (42 generated)
dwaxweiler
4 years, 9 months ago (2016-03-07 10:55:29 UTC) #3
Eran Messeri
Thanks for doing this! Left a few comments - I reviewed everything outside of third_party. ...
4 years, 9 months ago (2016-03-09 20:58:47 UTC) #6
Eran Messeri
https://codereview.chromium.org/1772603002/diff/1/content/child/web_url_loader_impl.cc File content/child/web_url_loader_impl.cc (right): https://codereview.chromium.org/1772603002/diff/1/content/child/web_url_loader_impl.cc#newcode344 content/child/web_url_loader_impl.cc:344: // Extract SCT's details. I think this is where ...
4 years, 9 months ago (2016-03-09 21:04:36 UTC) #7
dwaxweiler
I have updated the CL. https://codereview.chromium.org/1772603002/diff/1/content/child/web_url_loader_impl.cc File content/child/web_url_loader_impl.cc (right): https://codereview.chromium.org/1772603002/diff/1/content/child/web_url_loader_impl.cc#newcode10 content/child/web_url_loader_impl.cc:10: #include <iostream> On 2016/03/09 ...
4 years, 9 months ago (2016-03-10 11:02:28 UTC) #13
Eran Messeri
Apologies for the delay - seeking lgarron's feedback. https://codereview.chromium.org/1772603002/diff/1/content/child/web_url_loader_impl.cc File content/child/web_url_loader_impl.cc (right): https://codereview.chromium.org/1772603002/diff/1/content/child/web_url_loader_impl.cc#newcode344 content/child/web_url_loader_impl.cc:344: // ...
4 years, 9 months ago (2016-03-14 18:27:27 UTC) #14
lgarron
On 2016/03/14 at 18:27:27, eranm wrote: > Apologies for the delay - seeking lgarron's feedback. ...
4 years, 9 months ago (2016-03-17 23:28:32 UTC) #17
estark
I've only skimmed this CL, so feel free to ignore me if I'm saying nonsense. ...
4 years, 9 months ago (2016-03-18 00:33:53 UTC) #19
estark
On 2016/03/18 00:33:53, estark wrote: > I've only skimmed this CL, so feel free to ...
4 years, 9 months ago (2016-03-18 00:42:58 UTC) #20
lgarron
On 2016/03/18 at 00:33:53, estark wrote: > I've only skimmed this CL, so feel free ...
4 years, 9 months ago (2016-03-18 00:45:39 UTC) #21
estark
On 2016/03/18 00:45:39, lgarron wrote: > On 2016/03/18 at 00:33:53, estark wrote: > > I've ...
4 years, 9 months ago (2016-03-18 01:14:10 UTC) #22
dwaxweiler
That sounds reasonable. I have removed SignedCertificateTimestampStore, SignedCertificateTimestampIDStatusList and SignedCertificateTimestampIDStatus. Numbers of invalid, valid and ...
4 years, 9 months ago (2016-03-21 23:03:44 UTC) #23
lgarron
On 2016/03/21 at 23:03:44, daniel.waxweiler wrote: > That sounds reasonable. I have removed SignedCertificateTimestampStore, SignedCertificateTimestampIDStatusList ...
4 years, 9 months ago (2016-03-22 00:34:34 UTC) #24
estark
I haven't looked at this carefully -- not sure if it's going to be split ...
4 years, 9 months ago (2016-03-22 15:51:12 UTC) #25
dwaxweiler
@lgarron: As I am not familiar with moving changes from one git branch to another, ...
4 years, 9 months ago (2016-03-22 20:47:43 UTC) #26
Eran Messeri
On 2016/03/22 20:47:43, dwaxweiler wrote: > @lgarron: As I am not familiar with moving changes ...
4 years, 9 months ago (2016-03-22 21:22:23 UTC) #27
dwaxweiler
On 2016/03/22 21:22:23, Eran Messeri wrote: > On 2016/03/22 20:47:43, dwaxweiler wrote: > > @lgarron: ...
4 years, 9 months ago (2016-03-22 22:27:04 UTC) #28
estark
Daniel, thanks for working on this! Lucas/Daniel: do you want me to do a full ...
4 years, 9 months ago (2016-03-23 01:08:52 UTC) #29
dwaxweiler
With the new patch, everything works again. The layout has been adapted to the latest ...
4 years, 9 months ago (2016-03-23 15:50:52 UTC) #30
estark
On 2016/03/23 15:50:52, dwaxweiler wrote: > With the new patch, everything works again. The layout ...
4 years, 8 months ago (2016-04-01 01:37:51 UTC) #31
estark
Ping. What's happening with this CL? I'd like to go ahead and remove the SCTStore ...
4 years, 8 months ago (2016-04-11 17:09:35 UTC) #33
dwaxweiler
I have included the latest commits in this CL.
4 years, 8 months ago (2016-04-15 14:48:52 UTC) #35
Eran Messeri
drive-by review of code outside of third_party. I strongly suggest breaking this patch up to ...
4 years, 8 months ago (2016-04-26 09:29:51 UTC) #36
palmer
https://codereview.chromium.org/1772603002/diff/200001/content/common/resource_messages.cc File content/common/resource_messages.cc (right): https://codereview.chromium.org/1772603002/diff/200001/content/common/resource_messages.cc#newcode336 content/common/resource_messages.cc:336: // Do not disclose Set-Cookie headers over IPC. Which ...
4 years, 7 months ago (2016-04-26 23:12:02 UTC) #37
dwaxweiler
I have responded with replies and a new patch to the comments made by Eran ...
4 years, 7 months ago (2016-04-28 07:46:20 UTC) #38
dwaxweiler
I have extracted the removal of the SignedCertificateTimestampStore into an own CL: https://codereview.chromium.org/1957483003/ As soon ...
4 years, 7 months ago (2016-05-06 07:09:03 UTC) #40
dwaxweiler
I have updated this CL since the depended one got accepted. Now, it should be ...
4 years, 7 months ago (2016-05-19 17:40:09 UTC) #41
estark
I did a first pass over the plumbing parts of this (WebURLLoader, WebURLResponse, etc.). I ...
4 years, 7 months ago (2016-05-20 22:36:42 UTC) #42
dwaxweiler
@estark: Concerning your question to Eran, there is already a selection of information that is ...
4 years, 7 months ago (2016-05-21 09:21:37 UTC) #43
pfeldman
https://codereview.chromium.org/1772603002/diff/280001/third_party/WebKit/Source/devtools/protocol.json File third_party/WebKit/Source/devtools/protocol.json (right): https://codereview.chromium.org/1772603002/diff/280001/third_party/WebKit/Source/devtools/protocol.json#newcode1332 third_party/WebKit/Source/devtools/protocol.json:1332: "id": "SecurityDetails", This seems like a lot to send ...
4 years, 7 months ago (2016-05-23 16:53:43 UTC) #44
palmer
https://codereview.chromium.org/1772603002/diff/280001/net/cert/ct_sct_to_string.h File net/cert/ct_sct_to_string.h (right): https://codereview.chromium.org/1772603002/diff/280001/net/cert/ct_sct_to_string.h#newcode18 net/cert/ct_sct_to_string.h:18: // Converts a numeric |hash_algorithm| to its textual representation. ...
4 years, 7 months ago (2016-05-23 19:54:25 UTC) #45
Eran Messeri
net/cert/ct_* lgtm (but you'd need a proper net reviewer to approve those changes). Emily, re ...
4 years, 7 months ago (2016-05-25 10:47:04 UTC) #46
Eran Messeri
A few compilation errors I've pointed out, FYI. https://codereview.chromium.org/1772603002/diff/280001/net/cert/ct_sct_to_string.cc File net/cert/ct_sct_to_string.cc (right): https://codereview.chromium.org/1772603002/diff/280001/net/cert/ct_sct_to_string.cc#newcode57 net/cert/ct_sct_to_string.cc:57: return ...
4 years, 7 months ago (2016-05-25 12:42:22 UTC) #47
Eran Messeri
Having finally compiled and tried this patch, I'm ok with how things are displayed at ...
4 years, 7 months ago (2016-05-25 12:50:15 UTC) #48
estark
https://codereview.chromium.org/1772603002/diff/280001/third_party/WebKit/Source/devtools/protocol.json File third_party/WebKit/Source/devtools/protocol.json (right): https://codereview.chromium.org/1772603002/diff/280001/third_party/WebKit/Source/devtools/protocol.json#newcode1332 third_party/WebKit/Source/devtools/protocol.json:1332: "id": "SecurityDetails", On 2016/05/23 16:53:43, pfeldman wrote: > This ...
4 years, 6 months ago (2016-05-27 17:14:10 UTC) #49
pfeldman
> What do you think of doing this instead: InspectorResourceAgent could hold on to > ...
4 years, 6 months ago (2016-05-27 21:36:56 UTC) #50
dwaxweiler
I have only fixed smaller things and removed the SCT version number. https://codereview.chromium.org/1772603002/diff/280001/content/child/web_url_loader_impl.cc File content/child/web_url_loader_impl.cc ...
4 years, 6 months ago (2016-05-27 23:13:01 UTC) #51
estark
On 2016/05/27 21:36:56, pfeldman wrote: > > What do you think of doing this instead: ...
4 years, 6 months ago (2016-06-01 04:51:46 UTC) #52
pfeldman
My hesitation is that when you reimplement it the right way, not a single line ...
4 years, 6 months ago (2016-06-01 23:29:03 UTC) #53
estark
+dgozman: please see the last few replies on this thread discussing sending SCTs on requests ...
4 years, 6 months ago (2016-06-01 23:40:54 UTC) #55
dgozman
On 2016/06/01 23:40:54, estark wrote: > +dgozman: please see the last few replies on this ...
4 years, 6 months ago (2016-06-02 23:14:23 UTC) #56
estark
On 2016/06/02 23:14:23, dgozman wrote: > On 2016/06/01 23:40:54, estark wrote: > > +dgozman: please ...
4 years, 6 months ago (2016-06-02 23:46:37 UTC) #57
Eran Messeri
On 2016/06/02 23:46:37, estark wrote: > On 2016/06/02 23:14:23, dgozman wrote: > > On 2016/06/01 ...
4 years, 6 months ago (2016-06-03 11:07:25 UTC) #58
dgozman
200-300 bytes is not that bad. But I definitely saw 20k in some design doc. ...
4 years, 6 months ago (2016-06-04 00:27:37 UTC) #59
dwaxweiler
Answering most of the questions of @dgozman, I have to pass on the remaining ones ...
4 years, 6 months ago (2016-06-04 08:38:03 UTC) #60
estark
On 2016/06/04 00:27:37, dgozman_slow wrote: > 200-300 bytes is not that bad. But I definitely ...
4 years, 6 months ago (2016-06-04 15:34:57 UTC) #61
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1772603002/320001
4 years, 6 months ago (2016-06-08 13:23:51 UTC) #64
commit-bot: I haz the power
No L-G-T-M from a valid reviewer yet. CQ run can only be started by full ...
4 years, 6 months ago (2016-06-08 13:23:57 UTC) #66
estark
It looks like some of dgozman's comments aren't resolved yet. Daniel, are there open questions ...
4 years, 6 months ago (2016-06-08 16:51:55 UTC) #67
dwaxweiler
I have reacted to the latest comments of dgozman and estark. @estark: I have been ...
4 years, 6 months ago (2016-06-08 19:31:10 UTC) #68
dgozman
Sorry for delay, I was traveling this week. lgtm with a couple of minor comments ...
4 years, 6 months ago (2016-06-09 08:34:12 UTC) #69
dwaxweiler
I have rebased and reacted to a few further comments. https://codereview.chromium.org/1772603002/diff/320001/third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js File third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js (right): https://codereview.chromium.org/1772603002/diff/320001/third_party/WebKit/Source/devtools/front_end/security/SecurityPanel.js#newcode824 ...
4 years, 6 months ago (2016-06-10 07:42:37 UTC) #70
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1772603002/380001
4 years, 6 months ago (2016-06-10 07:44:21 UTC) #73
dgozman
On 2016/06/10 07:42:37, dwaxweiler wrote: > I have rebased and reacted to a few further ...
4 years, 6 months ago (2016-06-10 07:48:06 UTC) #74
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/198710)
4 years, 6 months ago (2016-06-10 07:51:09 UTC) #76
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1772603002/380001
4 years, 6 months ago (2016-06-10 08:16:37 UTC) #78
commit-bot: I haz the power
Dry run: Try jobs failed on following builders: mac_chromium_gn_rel on tryserver.chromium.mac (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.mac/builders/mac_chromium_gn_rel/builds/125545)
4 years, 6 months ago (2016-06-10 08:30:47 UTC) #80
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1772603002/400001
4 years, 6 months ago (2016-06-10 15:27:32 UTC) #82
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 6 months ago (2016-06-10 17:07:27 UTC) #84
davidben
Sorry, I didn't realize this was waiting on me. net lgtm with comments. https://codereview.chromium.org/1772603002/diff/400001/net/cert/ct_sct_to_string.cc File ...
4 years, 6 months ago (2016-06-14 15:47:37 UTC) #86
dwaxweiler
I have reacted to the comments of davidben. https://codereview.chromium.org/1772603002/diff/400001/net/cert/ct_sct_to_string.cc File net/cert/ct_sct_to_string.cc (right): https://codereview.chromium.org/1772603002/diff/400001/net/cert/ct_sct_to_string.cc#newcode14 net/cert/ct_sct_to_string.cc:14: net::ct::DigitallySigned::HashAlgorithm ...
4 years, 6 months ago (2016-06-14 16:57:02 UTC) #87
davidben
https://codereview.chromium.org/1772603002/diff/400001/net/cert/ct_signed_certificate_timestamp_log_param.cc File net/cert/ct_signed_certificate_timestamp_log_param.cc (right): https://codereview.chromium.org/1772603002/diff/400001/net/cert/ct_signed_certificate_timestamp_log_param.cc#newcode49 net/cert/ct_signed_certificate_timestamp_log_param.cc:49: out->SetString("origin", origin); On 2016/06/14 16:57:02, dwaxweiler wrote: > On ...
4 years, 6 months ago (2016-06-14 18:39:26 UTC) #88
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1772603002/440001
4 years, 6 months ago (2016-06-15 23:21:39 UTC) #90
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 6 months ago (2016-06-16 01:11:05 UTC) #92
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1772603002/440001
4 years, 6 months ago (2016-06-17 11:34:28 UTC) #95
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/202522)
4 years, 6 months ago (2016-06-17 11:41:20 UTC) #97
dwaxweiler
I have added a few reviewers since an okay is still missing for these files: ...
4 years, 6 months ago (2016-06-17 12:05:28 UTC) #99
estark
I'm trimming the reviewers list back down. Daniel, typically you would only add a single ...
4 years, 6 months ago (2016-06-17 16:04:46 UTC) #101
estark
I guess pfeldman is OOO, sorry about that. In his stead, I'd suggest creis@ for ...
4 years, 6 months ago (2016-06-21 23:12:39 UTC) #103
Charlie Reis
https://codereview.chromium.org/1772603002/diff/440001/content/child/web_url_loader_impl.cc File content/child/web_url_loader_impl.cc (right): https://codereview.chromium.org/1772603002/diff/440001/content/child/web_url_loader_impl.cc#newcode271 content/child/web_url_loader_impl.cc:271: blink::WebURLResponse::SignedCertificateTimestamp sct( This seems too complicated to be embedded ...
4 years, 6 months ago (2016-06-21 23:44:03 UTC) #104
Mike West
The third_party/WebKit bits look reasonable, but I'm a little worried about the amount of data ...
4 years, 6 months ago (2016-06-23 06:48:01 UTC) #106
dwaxweiler
I have reacted to most comments of Charlie and Mike. https://codereview.chromium.org/1772603002/diff/440001/content/child/web_url_loader_impl.cc File content/child/web_url_loader_impl.cc (right): https://codereview.chromium.org/1772603002/diff/440001/content/child/web_url_loader_impl.cc#newcode267 ...
4 years, 6 months ago (2016-06-23 11:53:02 UTC) #107
Mike West
third_party/WebKit LGTM. I think I'm happy with web_url_loader_impl.cc too (with the exception of the reinterpret_cast ...
4 years, 6 months ago (2016-06-23 16:32:31 UTC) #108
estark
Daniel, is this ready for Charlie to take another look? It does look like you ...
4 years, 5 months ago (2016-06-28 03:52:41 UTC) #109
dwaxweiler
Sorry for the delay! I got rid of the reinterpret_casts. Thanks, Mike! Charlie, you can ...
4 years, 5 months ago (2016-06-28 09:51:06 UTC) #110
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/1772603002/500001
4 years, 5 months ago (2016-06-28 11:49:21 UTC) #112
Mike West
On 2016/06/28 at 09:51:06, daniel.waxweiler wrote: > Sorry for the delay! I got rid of ...
4 years, 5 months ago (2016-06-28 13:19:22 UTC) #113
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
4 years, 5 months ago (2016-06-28 14:34:45 UTC) #115
Charlie Reis
Thanks. content/ LGTM.
4 years, 5 months ago (2016-06-28 21:57:43 UTC) #116
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/1772603002/500001
4 years, 5 months ago (2016-06-28 22:21:38 UTC) #119
commit-bot: I haz the power
Committed patchset #26 (id:500001)
4 years, 5 months ago (2016-06-28 22:42:08 UTC) #121
commit-bot: I haz the power
4 years, 5 months ago (2016-06-28 22:44:37 UTC) #123
Message was sent while issue was closed.
Patchset 26 (id:??) landed as
https://crrev.com/0e8fdc2e0d2d4d88a5552f5ba7d283d4c1fa7588
Cr-Commit-Position: refs/heads/master@{#402577}

Powered by Google App Engine
This is Rietveld 408576698