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

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

Issue 1393713003: Remove insecure QUIC support from Chromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 2 months 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
« no previous file with comments | « net/http/http_network_session.h ('k') | net/http/http_stream_factory_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 enable_spdy_compression(true), 87 enable_spdy_compression(true),
88 enable_spdy_ping_based_connection_checking(true), 88 enable_spdy_ping_based_connection_checking(true),
89 spdy_default_protocol(kProtoUnknown), 89 spdy_default_protocol(kProtoUnknown),
90 spdy_session_max_recv_window_size(kSpdySessionMaxRecvWindowSize), 90 spdy_session_max_recv_window_size(kSpdySessionMaxRecvWindowSize),
91 spdy_stream_max_recv_window_size(kSpdyStreamMaxRecvWindowSize), 91 spdy_stream_max_recv_window_size(kSpdyStreamMaxRecvWindowSize),
92 spdy_initial_max_concurrent_streams(0), 92 spdy_initial_max_concurrent_streams(0),
93 time_func(&base::TimeTicks::Now), 93 time_func(&base::TimeTicks::Now),
94 use_alternative_services(false), 94 use_alternative_services(false),
95 alternative_service_probability_threshold(1), 95 alternative_service_probability_threshold(1),
96 enable_quic(false), 96 enable_quic(false),
97 enable_insecure_quic(false),
98 enable_quic_for_proxies(false), 97 enable_quic_for_proxies(false),
99 enable_quic_port_selection(true), 98 enable_quic_port_selection(true),
100 quic_always_require_handshake_confirmation(false), 99 quic_always_require_handshake_confirmation(false),
101 quic_disable_connection_pooling(false), 100 quic_disable_connection_pooling(false),
102 quic_load_server_info_timeout_srtt_multiplier(0.25f), 101 quic_load_server_info_timeout_srtt_multiplier(0.25f),
103 quic_enable_connection_racing(false), 102 quic_enable_connection_racing(false),
104 quic_enable_non_blocking_io(false), 103 quic_enable_non_blocking_io(false),
105 quic_disable_disk_cache(false), 104 quic_disable_disk_cache(false),
106 quic_prefer_aes(false), 105 quic_prefer_aes(false),
107 quic_max_number_of_lossy_connections(4), 106 quic_max_number_of_lossy_connections(4),
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 case WEBSOCKET_SOCKET_POOL: 341 case WEBSOCKET_SOCKET_POOL:
343 return websocket_socket_pool_manager_.get(); 342 return websocket_socket_pool_manager_.get();
344 default: 343 default:
345 NOTREACHED(); 344 NOTREACHED();
346 break; 345 break;
347 } 346 }
348 return NULL; 347 return NULL;
349 } 348 }
350 349
351 } // namespace net 350 } // namespace net
OLDNEW
« no previous file with comments | « net/http/http_network_session.h ('k') | net/http/http_stream_factory_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698