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

Side by Side Diff: net/http/http_network_session.cc

Issue 1454993002: QUIC - Code to verify SCT tag with certificate transparency verifier (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix comments and add tests for SCTList Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/http/http_network_session.h" 5 #include "net/http/http_network_session.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/debug/stack_trace.h" 10 #include "base/debug/stack_trace.h"
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 quic_stream_factory_( 140 quic_stream_factory_(
141 params.host_resolver, 141 params.host_resolver,
142 params.client_socket_factory 142 params.client_socket_factory
143 ? params.client_socket_factory 143 ? params.client_socket_factory
144 : ClientSocketFactory::GetDefaultFactory(), 144 : ClientSocketFactory::GetDefaultFactory(),
145 params.http_server_properties, 145 params.http_server_properties,
146 params.cert_verifier, 146 params.cert_verifier,
147 params.cert_policy_enforcer, 147 params.cert_policy_enforcer,
148 params.channel_id_service, 148 params.channel_id_service,
149 params.transport_security_state, 149 params.transport_security_state,
150 params.cert_transparency_verifier,
150 params.socket_performance_watcher_factory, 151 params.socket_performance_watcher_factory,
151 params.quic_crypto_client_stream_factory, 152 params.quic_crypto_client_stream_factory,
152 params.quic_random ? params.quic_random : QuicRandom::GetInstance(), 153 params.quic_random ? params.quic_random : QuicRandom::GetInstance(),
153 params.quic_clock ? params.quic_clock : new QuicClock(), 154 params.quic_clock ? params.quic_clock : new QuicClock(),
154 params.quic_max_packet_length, 155 params.quic_max_packet_length,
155 params.quic_user_agent_id, 156 params.quic_user_agent_id,
156 params.quic_supported_versions, 157 params.quic_supported_versions,
157 params.enable_quic_port_selection, 158 params.enable_quic_port_selection,
158 params.quic_always_require_handshake_confirmation, 159 params.quic_always_require_handshake_confirmation,
159 params.quic_disable_connection_pooling, 160 params.quic_disable_connection_pooling,
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 case WEBSOCKET_SOCKET_POOL: 354 case WEBSOCKET_SOCKET_POOL:
354 return websocket_socket_pool_manager_.get(); 355 return websocket_socket_pool_manager_.get();
355 default: 356 default:
356 NOTREACHED(); 357 NOTREACHED();
357 break; 358 break;
358 } 359 }
359 return NULL; 360 return NULL;
360 } 361 }
361 362
362 } // namespace net 363 } // namespace net
OLDNEW
« no previous file with comments | « no previous file | net/quic/crypto/proof_verifier_chromium.h » ('j') | net/quic/crypto/proof_verifier_chromium_test.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698