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

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

Issue 312193005: Pass chrome version and channel in CHLO message to server. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: compile fix Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « net/http/http_network_session.h ('k') | net/quic/crypto/crypto_handshake_message.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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 params.client_socket_factory : 116 params.client_socket_factory :
117 net::ClientSocketFactory::GetDefaultFactory(), 117 net::ClientSocketFactory::GetDefaultFactory(),
118 params.http_server_properties, 118 params.http_server_properties,
119 params.cert_verifier, 119 params.cert_verifier,
120 params.quic_crypto_client_stream_factory, 120 params.quic_crypto_client_stream_factory,
121 params.quic_random ? params.quic_random : 121 params.quic_random ? params.quic_random :
122 QuicRandom::GetInstance(), 122 QuicRandom::GetInstance(),
123 params.quic_clock ? params. quic_clock : 123 params.quic_clock ? params. quic_clock :
124 new QuicClock(), 124 new QuicClock(),
125 params.quic_max_packet_length, 125 params.quic_max_packet_length,
126 params.quic_user_agent_id,
126 params.quic_supported_versions, 127 params.quic_supported_versions,
127 params.enable_quic_port_selection, 128 params.enable_quic_port_selection,
128 params.enable_quic_pacing, 129 params.enable_quic_pacing,
129 params.enable_quic_time_based_loss_detection), 130 params.enable_quic_time_based_loss_detection),
130 spdy_session_pool_(params.host_resolver, 131 spdy_session_pool_(params.host_resolver,
131 params.ssl_config_service, 132 params.ssl_config_service,
132 params.http_server_properties, 133 params.http_server_properties,
133 params.force_spdy_single_domain, 134 params.force_spdy_single_domain,
134 params.enable_spdy_compression, 135 params.enable_spdy_compression,
135 params.enable_spdy_ping_based_connection_checking, 136 params.enable_spdy_ping_based_connection_checking,
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 case WEBSOCKET_SOCKET_POOL: 298 case WEBSOCKET_SOCKET_POOL:
298 return websocket_socket_pool_manager_.get(); 299 return websocket_socket_pool_manager_.get();
299 default: 300 default:
300 NOTREACHED(); 301 NOTREACHED();
301 break; 302 break;
302 } 303 }
303 return NULL; 304 return NULL;
304 } 305 }
305 306
306 } // namespace net 307 } // namespace net
OLDNEW
« no previous file with comments | « net/http/http_network_session.h ('k') | net/quic/crypto/crypto_handshake_message.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698