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

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

Issue 428383002: QUIC - enable persisting of QUICServerInfo (server config) to disk (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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 | « no previous file | no next file » | 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 time_func(&base::TimeTicks::Now), 80 time_func(&base::TimeTicks::Now),
81 force_spdy_over_ssl(true), 81 force_spdy_over_ssl(true),
82 force_spdy_always(false), 82 force_spdy_always(false),
83 use_alternate_protocols(false), 83 use_alternate_protocols(false),
84 alternate_protocol_probability_threshold(1), 84 alternate_protocol_probability_threshold(1),
85 enable_websocket_over_spdy(false), 85 enable_websocket_over_spdy(false),
86 enable_quic(false), 86 enable_quic(false),
87 enable_quic_port_selection(true), 87 enable_quic_port_selection(true),
88 enable_quic_pacing(false), 88 enable_quic_pacing(false),
89 enable_quic_time_based_loss_detection(false), 89 enable_quic_time_based_loss_detection(false),
90 enable_quic_persist_server_info(false), 90 enable_quic_persist_server_info(true),
wtc 2014/07/31 00:58:02 This is just a quick and dirty fix, right? I think
ramant (doing other things) 2014/07/31 00:59:40 The following CL deletes enable_quic_persist_serve
91 quic_clock(NULL), 91 quic_clock(NULL),
92 quic_random(NULL), 92 quic_random(NULL),
93 quic_max_packet_length(kDefaultMaxPacketSize), 93 quic_max_packet_length(kDefaultMaxPacketSize),
94 enable_user_alternate_protocol_ports(false), 94 enable_user_alternate_protocol_ports(false),
95 quic_crypto_client_stream_factory(NULL) { 95 quic_crypto_client_stream_factory(NULL) {
96 quic_supported_versions.push_back(QUIC_VERSION_19); 96 quic_supported_versions.push_back(QUIC_VERSION_19);
97 } 97 }
98 98
99 HttpNetworkSession::Params::~Params() {} 99 HttpNetworkSession::Params::~Params() {}
100 100
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 case WEBSOCKET_SOCKET_POOL: 302 case WEBSOCKET_SOCKET_POOL:
303 return websocket_socket_pool_manager_.get(); 303 return websocket_socket_pool_manager_.get();
304 default: 304 default:
305 NOTREACHED(); 305 NOTREACHED();
306 break; 306 break;
307 } 307 }
308 return NULL; 308 return NULL;
309 } 309 }
310 310
311 } // namespace net 311 } // namespace net
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698