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

Issue 1850043002: Check whether to enable token binding in preconnect.cc (Closed)

Created:
4 years, 8 months ago by nharper
Modified:
4 years, 8 months ago
Reviewers:
davidben, mmenke, mattm
CC:
chromium-reviews, cbentzel+watch_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Check whether to enable token binding in preconnect.cc BUG=604486 Committed: https://crrev.com/8cdb0fb12346304fb53e51bd97a41fd22be63d67 Cr-Commit-Position: refs/heads/master@{#389250}

Patch Set 1 #

Total comments: 2

Patch Set 2 : Fix privacy mode checks #

Patch Set 3 : Remove ssl_config args from PreconnectStreams and remove privacy mode/token binding duplicate logic #

Total comments: 4

Patch Set 4 : Remove extra lines from HttpNetworkTransaction #

Patch Set 5 : rebase #

Total comments: 3

Patch Set 6 : rebase #

Patch Set 7 : HttpNetworkSession::GetSSLConfig populates both server and proxy configs #

Unified diffs Side-by-side diffs Delta from patch set Stats (+48 lines, -60 lines) Patch
M chrome/browser/net/preconnect.cc View 1 2 1 chunk +1 line, -11 lines 0 comments Download
M net/http/http_network_session.h View 1 2 3 4 5 6 1 chunk +6 lines, -0 lines 0 comments Download
M net/http/http_network_session.cc View 1 2 3 4 5 6 1 chunk +14 lines, -0 lines 0 comments Download
M net/http/http_network_transaction.cc View 1 2 3 4 5 6 3 chunks +3 lines, -12 lines 0 comments Download
M net/http/http_network_transaction_unittest.cc View 1 2 3 4 5 chunks +11 lines, -13 lines 0 comments Download
M net/http/http_stream_factory.h View 1 2 1 chunk +1 line, -3 lines 0 comments Download
M net/http/http_stream_factory_impl.h View 1 2 1 chunk +1 line, -4 lines 0 comments Download
M net/http/http_stream_factory_impl.cc View 1 2 3 4 5 6 1 chunk +8 lines, -3 lines 0 comments Download
M net/http/http_stream_factory_impl_unittest.cc View 1 2 3 4 2 chunks +2 lines, -8 lines 0 comments Download
M net/spdy/spdy_network_transaction_unittest.cc View 1 2 3 4 5 1 chunk +1 line, -6 lines 0 comments Download

Messages

Total messages: 23 (7 generated)
nharper
4 years, 8 months ago (2016-04-01 00:01:27 UTC) #2
mattm
https://codereview.chromium.org/1850043002/diff/1/chrome/browser/net/preconnect.cc File chrome/browser/net/preconnect.cc (right): https://codereview.chromium.org/1850043002/diff/1/chrome/browser/net/preconnect.cc#newcode110 chrome/browser/net/preconnect.cc:110: ssl_config.token_binding_params.push_back(net::TB_PARAM_ECDSAP256); Should this check privacy mode? Should it set ...
4 years, 8 months ago (2016-04-01 01:27:18 UTC) #3
nharper
Added a privacy mode check to preconnect.cc. I also fixed the privacy mode check in ...
4 years, 8 months ago (2016-04-01 19:33:06 UTC) #5
davidben
+mmenke. It feels like this logic shouldn't be duplicated between //chrome/browser/net and //net, but I'm ...
4 years, 8 months ago (2016-04-01 20:51:58 UTC) #7
mmenke
On 2016/04/01 20:51:58, davidben wrote: > +mmenke. It feels like this logic shouldn't be duplicated ...
4 years, 8 months ago (2016-04-01 21:07:22 UTC) #8
nharper
On 2016/04/01 21:07:22, mmenke wrote: > On 2016/04/01 20:51:58, davidben wrote: > > +mmenke. It ...
4 years, 8 months ago (2016-04-02 02:45:45 UTC) #9
mmenke
On 2016/04/02 02:45:45, nharper (OOO thru 4-8) wrote: > On 2016/04/01 21:07:22, mmenke wrote: > ...
4 years, 8 months ago (2016-04-04 15:54:20 UTC) #10
nharper
On 2016/04/04 15:54:20, mmenke wrote: > What I'd really like to do: > > 1) ...
4 years, 8 months ago (2016-04-12 21:09:04 UTC) #11
mmenke
Thanks for doing this, looks much better to me! Could you please file a bug ...
4 years, 8 months ago (2016-04-13 16:21:05 UTC) #12
nharper
https://codereview.chromium.org/1850043002/diff/40001/net/http/http_network_session.h File net/http/http_network_session.h (right): https://codereview.chromium.org/1850043002/diff/40001/net/http/http_network_session.h#newcode227 net/http/http_network_session.h:227: SSLConfigService* ssl_config_service() { return ssl_config_service_.get(); } On 2016/04/13 16:21:04, ...
4 years, 8 months ago (2016-04-18 22:22:55 UTC) #14
mmenke
LGTM, assuming the changed proxy behavior isn't a problem. Sorry for slowness - took two ...
4 years, 8 months ago (2016-04-22 16:54:13 UTC) #15
nharper
ptal https://codereview.chromium.org/1850043002/diff/80001/net/http/http_network_transaction.cc File net/http/http_network_transaction.cc (right): https://codereview.chromium.org/1850043002/diff/80001/net/http/http_network_transaction.cc#newcode159 net/http/http_network_transaction.cc:159: proxy_ssl_config_ = server_ssl_config_; On 2016/04/22 16:54:13, mmenke wrote: ...
4 years, 8 months ago (2016-04-22 19:05:02 UTC) #16
mmenke
On 2016/04/22 19:05:02, nharper wrote: > ptal > > https://codereview.chromium.org/1850043002/diff/80001/net/http/http_network_transaction.cc > File net/http/http_network_transaction.cc (right): > ...
4 years, 8 months ago (2016-04-22 19:31:33 UTC) #17
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1850043002/120001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1850043002/120001
4 years, 8 months ago (2016-04-22 19:39:08 UTC) #19
commit-bot: I haz the power
Committed patchset #7 (id:120001)
4 years, 8 months ago (2016-04-22 21:35:11 UTC) #21
commit-bot: I haz the power
4 years, 8 months ago (2016-04-22 21:36:31 UTC) #23
Message was sent while issue was closed.
Patchset 7 (id:??) landed as
https://crrev.com/8cdb0fb12346304fb53e51bd97a41fd22be63d67
Cr-Commit-Position: refs/heads/master@{#389250}

Powered by Google App Engine
This is Rietveld 408576698