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

Side by Side Diff: net/spdy/chromium/spdy_test_util_common.cc

Issue 2814633003: Extract Proxy Resolution out of HttpStreamFactoryImpl::Job (Closed)
Patch Set: add one more test for ReconsiderProxyAfterError Created 3 years, 7 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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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/spdy/chromium/spdy_test_util_common.h" 5 #include "net/spdy/chromium/spdy_test_util_common.h"
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8 8
9 #include <cstddef> 9 #include <cstddef>
10 #include <utility> 10 #include <utility>
(...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after
395 params.transport_security_state = 395 params.transport_security_state =
396 session_deps->transport_security_state.get(); 396 session_deps->transport_security_state.get();
397 params.cert_transparency_verifier = 397 params.cert_transparency_verifier =
398 session_deps->cert_transparency_verifier.get(); 398 session_deps->cert_transparency_verifier.get();
399 params.ct_policy_enforcer = session_deps->ct_policy_enforcer.get(); 399 params.ct_policy_enforcer = session_deps->ct_policy_enforcer.get();
400 params.proxy_service = session_deps->proxy_service.get(); 400 params.proxy_service = session_deps->proxy_service.get();
401 params.ssl_config_service = session_deps->ssl_config_service.get(); 401 params.ssl_config_service = session_deps->ssl_config_service.get();
402 params.http_auth_handler_factory = 402 params.http_auth_handler_factory =
403 session_deps->http_auth_handler_factory.get(); 403 session_deps->http_auth_handler_factory.get();
404 params.http_server_properties = session_deps->http_server_properties.get(); 404 params.http_server_properties = session_deps->http_server_properties.get();
405 params.client_socket_factory = session_deps->socket_factory.get();
405 params.enable_spdy_ping_based_connection_checking = session_deps->enable_ping; 406 params.enable_spdy_ping_based_connection_checking = session_deps->enable_ping;
406 params.enable_user_alternate_protocol_ports = 407 params.enable_user_alternate_protocol_ports =
407 session_deps->enable_user_alternate_protocol_ports; 408 session_deps->enable_user_alternate_protocol_ports;
408 params.enable_quic = session_deps->enable_quic; 409 params.enable_quic = session_deps->enable_quic;
409 params.enable_server_push_cancellation = 410 params.enable_server_push_cancellation =
410 session_deps->enable_server_push_cancellation; 411 session_deps->enable_server_push_cancellation;
411 params.spdy_session_max_recv_window_size = 412 params.spdy_session_max_recv_window_size =
412 session_deps->session_max_recv_window_size; 413 session_deps->session_max_recv_window_size;
413 params.http2_settings = session_deps->http2_settings; 414 params.http2_settings = session_deps->http2_settings;
414 params.time_func = session_deps->time_func; 415 params.time_func = session_deps->time_func;
(...skipping 746 matching lines...) Expand 10 before | Expand all | Expand 10 after
1161 headers[GetSchemeKey()] = scheme.c_str(); 1162 headers[GetSchemeKey()] = scheme.c_str();
1162 headers[GetPathKey()] = path.c_str(); 1163 headers[GetPathKey()] = path.c_str();
1163 if (content_length) { 1164 if (content_length) {
1164 SpdyString length_str = base::Int64ToString(*content_length); 1165 SpdyString length_str = base::Int64ToString(*content_length);
1165 headers["content-length"] = length_str; 1166 headers["content-length"] = length_str;
1166 } 1167 }
1167 return headers; 1168 return headers;
1168 } 1169 }
1169 1170
1170 } // namespace net 1171 } // namespace net
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698