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

Issue 1165293005: Add security handler stub for sending the lock icon status to DevTools. (Closed)

Created:
5 years, 6 months ago by lgarron
Modified:
5 years, 6 months ago
Reviewers:
pfeldman, estark
CC:
chromium-reviews, darin-cc_chromium.org, devtools-reviews_chromium.org, jam, yurys
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Add security handler stub for sending the lock icon status to DevTools. This CL will be followed up with: 1. https://codereview.chromium.org/1167693010 (Blink) 2. https://codereview.chromium.org/1163963002 (Chrome) BUG=445359, 484401 Committed: https://crrev.com/05cbd867a2832098acb777109f2431ec87813fb0 Cr-Commit-Position: refs/heads/master@{#333573}

Patch Set 1 #

Total comments: 2

Patch Set 2 : Remove SetClient() call. #

Total comments: 7

Patch Set 3 : Remove spare include. #

Patch Set 4 : virtual destructor + SetClient #

Total comments: 2
Unified diffs Side-by-side diffs Delta from patch set Stats (+70 lines, -0 lines) Patch
A content/browser/devtools/protocol/security_handler.h View 1 2 3 1 chunk +36 lines, -0 lines 2 comments Download
A content/browser/devtools/protocol/security_handler.cc View 1 2 3 1 chunk +32 lines, -0 lines 0 comments Download
M content/content_browser.gypi View 1 chunk +2 lines, -0 lines 0 comments Download

Messages

Total messages: 30 (8 generated)
lgarron
5 years, 6 months ago (2015-06-09 00:48:16 UTC) #2
estark
https://codereview.chromium.org/1165293005/diff/1/content/browser/devtools/protocol/security_handler.h File content/browser/devtools/protocol/security_handler.h (right): https://codereview.chromium.org/1165293005/diff/1/content/browser/devtools/protocol/security_handler.h#newcode22 content/browser/devtools/protocol/security_handler.h:22: void SetClient(scoped_ptr<Client> client); Does this build? I thought the ...
5 years, 6 months ago (2015-06-09 05:07:48 UTC) #5
lgarron
https://codereview.chromium.org/1165293005/diff/1/content/browser/devtools/protocol/security_handler.h File content/browser/devtools/protocol/security_handler.h (right): https://codereview.chromium.org/1165293005/diff/1/content/browser/devtools/protocol/security_handler.h#newcode22 content/browser/devtools/protocol/security_handler.h:22: void SetClient(scoped_ptr<Client> client); On 2015/06/09 at 05:07:48, estark wrote: ...
5 years, 6 months ago (2015-06-09 18:17:24 UTC) #7
pfeldman
lgtm https://codereview.chromium.org/1165293005/diff/20001/content/browser/devtools/protocol/security_handler.h File content/browser/devtools/protocol/security_handler.h (right): https://codereview.chromium.org/1165293005/diff/20001/content/browser/devtools/protocol/security_handler.h#newcode9 content/browser/devtools/protocol/security_handler.h:9: #include "content/public/common/security_style.h" Unused? https://codereview.chromium.org/1165293005/diff/20001/content/browser/devtools/protocol/security_handler.h#newcode20 content/browser/devtools/protocol/security_handler.h:20: ~SecurityHandler(); virtual
5 years, 6 months ago (2015-06-09 18:35:53 UTC) #8
estark
https://codereview.chromium.org/1165293005/diff/20001/content/browser/devtools/protocol/security_handler.h File content/browser/devtools/protocol/security_handler.h (right): https://codereview.chromium.org/1165293005/diff/20001/content/browser/devtools/protocol/security_handler.h#newcode21 content/browser/devtools/protocol/security_handler.h:21: Sorry, I should have been more specific in my ...
5 years, 6 months ago (2015-06-09 18:48:25 UTC) #9
lgarron
https://codereview.chromium.org/1165293005/diff/20001/content/browser/devtools/protocol/security_handler.h File content/browser/devtools/protocol/security_handler.h (right): https://codereview.chromium.org/1165293005/diff/20001/content/browser/devtools/protocol/security_handler.h#newcode9 content/browser/devtools/protocol/security_handler.h:9: #include "content/public/common/security_style.h" On 2015/06/09 at 18:35:53, pfeldman wrote: > ...
5 years, 6 months ago (2015-06-09 18:51:23 UTC) #10
pfeldman
https://codereview.chromium.org/1165293005/diff/20001/content/browser/devtools/protocol/security_handler.h File content/browser/devtools/protocol/security_handler.h (right): https://codereview.chromium.org/1165293005/diff/20001/content/browser/devtools/protocol/security_handler.h#newcode20 content/browser/devtools/protocol/security_handler.h:20: ~SecurityHandler(); virtual for now, change to override later. https://codereview.chromium.org/1165293005/diff/20001/content/browser/devtools/protocol/security_handler.h#newcode21 ...
5 years, 6 months ago (2015-06-09 19:04:23 UTC) #11
lgarron
On 2015/06/09 at 19:04:23, pfeldman wrote: > https://codereview.chromium.org/1165293005/diff/20001/content/browser/devtools/protocol/security_handler.h > File content/browser/devtools/protocol/security_handler.h (right): > > https://codereview.chromium.org/1165293005/diff/20001/content/browser/devtools/protocol/security_handler.h#newcode20 ...
5 years, 6 months ago (2015-06-09 19:29:16 UTC) #12
lgarron
Okay, the latest patch has the virtual destructor and SetClient().
5 years, 6 months ago (2015-06-09 19:41:54 UTC) #13
pfeldman
On 2015/06/09 19:41:54, lgarron wrote: > Okay, the latest patch has the virtual destructor and ...
5 years, 6 months ago (2015-06-09 19:44:50 UTC) #14
lgarron
On 2015/06/09 at 19:44:50, pfeldman wrote: > On 2015/06/09 19:41:54, lgarron wrote: > > Okay, ...
5 years, 6 months ago (2015-06-09 19:46:15 UTC) #15
lgarron
I also just specifically built patch 4 against (a recent) ToT Blink, and it also ...
5 years, 6 months ago (2015-06-09 19:52:15 UTC) #16
commit-bot: I haz the power
Dry run: CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1165293005/60001
5 years, 6 months ago (2015-06-09 19:53:37 UTC) #19
lgarron
pfeldman@: I'm doing a CQ dry run just to make sure. You've technically already given ...
5 years, 6 months ago (2015-06-09 20:05:37 UTC) #20
estark
On 2015/06/09 19:29:16, lgarron wrote: > On 2015/06/09 at 19:04:23, pfeldman wrote: > > > ...
5 years, 6 months ago (2015-06-09 20:05:42 UTC) #21
lgarron
On 2015/06/09 at 20:05:42, estark wrote: > On 2015/06/09 19:29:16, lgarron wrote: > > On ...
5 years, 6 months ago (2015-06-09 20:11:58 UTC) #22
estark
https://codereview.chromium.org/1165293005/diff/60001/content/browser/devtools/protocol/security_handler.h File content/browser/devtools/protocol/security_handler.h (right): https://codereview.chromium.org/1165293005/diff/60001/content/browser/devtools/protocol/security_handler.h#newcode9 content/browser/devtools/protocol/security_handler.h:9: #include "content/browser/devtools/protocol/devtools_protocol_client.h" nit: you can forward-declare this and do ...
5 years, 6 months ago (2015-06-09 20:39:20 UTC) #23
lgarron
https://codereview.chromium.org/1165293005/diff/60001/content/browser/devtools/protocol/security_handler.h File content/browser/devtools/protocol/security_handler.h (right): https://codereview.chromium.org/1165293005/diff/60001/content/browser/devtools/protocol/security_handler.h#newcode9 content/browser/devtools/protocol/security_handler.h:9: #include "content/browser/devtools/protocol/devtools_protocol_client.h" On 2015/06/09 at 20:39:20, estark wrote: > ...
5 years, 6 months ago (2015-06-09 20:48:27 UTC) #24
commit-bot: I haz the power
Dry run: This issue passed the CQ dry run.
5 years, 6 months ago (2015-06-09 20:48:40 UTC) #26
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1165293005/60001
5 years, 6 months ago (2015-06-09 20:50:40 UTC) #28
commit-bot: I haz the power
Committed patchset #4 (id:60001)
5 years, 6 months ago (2015-06-09 21:08:13 UTC) #29
commit-bot: I haz the power
5 years, 6 months ago (2015-06-09 21:09:00 UTC) #30
Message was sent while issue was closed.
Patchset 4 (id:??) landed as
https://crrev.com/05cbd867a2832098acb777109f2431ec87813fb0
Cr-Commit-Position: refs/heads/master@{#333573}

Powered by Google App Engine
This is Rietveld 408576698