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

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

Issue 1305293004: Notfiy NQE of QUIC RTT (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed a test Created 5 years, 3 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 | net/quic/quic_chromium_client_session.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/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/debug/stack_trace.h" 10 #include "base/debug/stack_trace.h"
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 quic_stream_factory_( 138 quic_stream_factory_(
139 params.host_resolver, 139 params.host_resolver,
140 params.client_socket_factory 140 params.client_socket_factory
141 ? params.client_socket_factory 141 ? params.client_socket_factory
142 : ClientSocketFactory::GetDefaultFactory(), 142 : ClientSocketFactory::GetDefaultFactory(),
143 params.http_server_properties, 143 params.http_server_properties,
144 params.cert_verifier, 144 params.cert_verifier,
145 params.cert_policy_enforcer, 145 params.cert_policy_enforcer,
146 params.channel_id_service, 146 params.channel_id_service,
147 params.transport_security_state, 147 params.transport_security_state,
148 params.socket_performance_watcher_factory,
148 params.quic_crypto_client_stream_factory, 149 params.quic_crypto_client_stream_factory,
149 params.quic_random ? params.quic_random : QuicRandom::GetInstance(), 150 params.quic_random ? params.quic_random : QuicRandom::GetInstance(),
150 params.quic_clock ? params.quic_clock : new QuicClock(), 151 params.quic_clock ? params.quic_clock : new QuicClock(),
151 params.quic_max_packet_length, 152 params.quic_max_packet_length,
152 params.quic_user_agent_id, 153 params.quic_user_agent_id,
153 params.quic_supported_versions, 154 params.quic_supported_versions,
154 params.enable_quic_port_selection, 155 params.enable_quic_port_selection,
155 params.quic_always_require_handshake_confirmation, 156 params.quic_always_require_handshake_confirmation,
156 params.quic_disable_connection_pooling, 157 params.quic_disable_connection_pooling,
157 params.quic_load_server_info_timeout_srtt_multiplier, 158 params.quic_load_server_info_timeout_srtt_multiplier,
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 case WEBSOCKET_SOCKET_POOL: 340 case WEBSOCKET_SOCKET_POOL:
340 return websocket_socket_pool_manager_.get(); 341 return websocket_socket_pool_manager_.get();
341 default: 342 default:
342 NOTREACHED(); 343 NOTREACHED();
343 break; 344 break;
344 } 345 }
345 return NULL; 346 return NULL;
346 } 347 }
347 348
348 } // namespace net 349 } // namespace net
OLDNEW
« no previous file with comments | « no previous file | net/quic/quic_chromium_client_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698