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

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

Issue 2109803002: Change a number of SPDY unittests from http to https. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
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/atomic_sequence_num.h" 9 #include "base/atomic_sequence_num.h"
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 enable_tcp_fast_open_for_ssl(false), 91 enable_tcp_fast_open_for_ssl(false),
92 enable_spdy_ping_based_connection_checking(true), 92 enable_spdy_ping_based_connection_checking(true),
93 spdy_default_protocol(kProtoUnknown), 93 spdy_default_protocol(kProtoUnknown),
94 enable_spdy31(false), 94 enable_spdy31(false),
95 enable_http2(true), 95 enable_http2(true),
96 spdy_session_max_recv_window_size(kSpdySessionMaxRecvWindowSize), 96 spdy_session_max_recv_window_size(kSpdySessionMaxRecvWindowSize),
97 spdy_stream_max_recv_window_size(kSpdyStreamMaxRecvWindowSize), 97 spdy_stream_max_recv_window_size(kSpdyStreamMaxRecvWindowSize),
98 time_func(&base::TimeTicks::Now), 98 time_func(&base::TimeTicks::Now),
99 enable_http2_alternative_service_with_different_host(false), 99 enable_http2_alternative_service_with_different_host(false),
100 enable_quic_alternative_service_with_different_host(true), 100 enable_quic_alternative_service_with_different_host(true),
101 enable_alternative_service_for_insecure_origins(false),
102 enable_npn(false), 101 enable_npn(false),
103 enable_priority_dependencies(true), 102 enable_priority_dependencies(true),
104 enable_quic(false), 103 enable_quic(false),
105 disable_quic_on_timeout_with_open_streams(false), 104 disable_quic_on_timeout_with_open_streams(false),
106 enable_quic_port_selection(true), 105 enable_quic_port_selection(true),
107 quic_always_require_handshake_confirmation(false), 106 quic_always_require_handshake_confirmation(false),
108 quic_disable_connection_pooling(false), 107 quic_disable_connection_pooling(false),
109 quic_load_server_info_timeout_srtt_multiplier(0.25f), 108 quic_load_server_info_timeout_srtt_multiplier(0.25f),
110 quic_enable_connection_racing(false), 109 quic_enable_connection_racing(false),
111 quic_enable_non_blocking_io(false), 110 quic_enable_non_blocking_io(false),
(...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 case WEBSOCKET_SOCKET_POOL: 405 case WEBSOCKET_SOCKET_POOL:
407 return websocket_socket_pool_manager_.get(); 406 return websocket_socket_pool_manager_.get();
408 default: 407 default:
409 NOTREACHED(); 408 NOTREACHED();
410 break; 409 break;
411 } 410 }
412 return NULL; 411 return NULL;
413 } 412 }
414 413
415 } // namespace net 414 } // namespace net
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698