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

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

Issue 1869783004: Disable SPDY/3.1. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Modify NetworkSessionConfiguratorTest.Defaults. Created 4 years, 8 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 | « chrome/browser/io_thread_unittest.cc ('k') | net/spdy/spdy_test_util_common.h » ('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/atomic_sequence_num.h" 9 #include "base/atomic_sequence_num.h"
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 http_auth_handler_factory(NULL), 83 http_auth_handler_factory(NULL),
84 net_log(NULL), 84 net_log(NULL),
85 host_mapping_rules(NULL), 85 host_mapping_rules(NULL),
86 socket_performance_watcher_factory(NULL), 86 socket_performance_watcher_factory(NULL),
87 ignore_certificate_errors(false), 87 ignore_certificate_errors(false),
88 testing_fixed_http_port(0), 88 testing_fixed_http_port(0),
89 testing_fixed_https_port(0), 89 testing_fixed_https_port(0),
90 enable_tcp_fast_open_for_ssl(false), 90 enable_tcp_fast_open_for_ssl(false),
91 enable_spdy_ping_based_connection_checking(true), 91 enable_spdy_ping_based_connection_checking(true),
92 spdy_default_protocol(kProtoUnknown), 92 spdy_default_protocol(kProtoUnknown),
93 enable_spdy31(true), 93 enable_spdy31(false),
94 enable_http2(true), 94 enable_http2(true),
95 spdy_session_max_recv_window_size(kSpdySessionMaxRecvWindowSize), 95 spdy_session_max_recv_window_size(kSpdySessionMaxRecvWindowSize),
96 spdy_stream_max_recv_window_size(kSpdyStreamMaxRecvWindowSize), 96 spdy_stream_max_recv_window_size(kSpdyStreamMaxRecvWindowSize),
97 time_func(&base::TimeTicks::Now), 97 time_func(&base::TimeTicks::Now),
98 parse_alternative_services(false), 98 parse_alternative_services(false),
99 enable_alternative_service_with_different_host(false), 99 enable_alternative_service_with_different_host(false),
100 enable_npn(true), 100 enable_npn(true),
101 enable_brotli(false), 101 enable_brotli(false),
102 enable_priority_dependencies(true), 102 enable_priority_dependencies(true),
103 enable_quic(false), 103 enable_quic(false),
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 case WEBSOCKET_SOCKET_POOL: 390 case WEBSOCKET_SOCKET_POOL:
391 return websocket_socket_pool_manager_.get(); 391 return websocket_socket_pool_manager_.get();
392 default: 392 default:
393 NOTREACHED(); 393 NOTREACHED();
394 break; 394 break;
395 } 395 }
396 return NULL; 396 return NULL;
397 } 397 }
398 398
399 } // namespace net 399 } // namespace net
OLDNEW
« no previous file with comments | « chrome/browser/io_thread_unittest.cc ('k') | net/spdy/spdy_test_util_common.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698