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

Side by Side Diff: jingle/glue/proxy_resolving_client_socket.cc

Issue 1547273003: Set trusted SPDY proxy dynamically on per-profile basis (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated based on design doc discussion Created 4 years, 11 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) 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 "jingle/glue/proxy_resolving_client_socket.h" 5 #include "jingle/glue/proxy_resolving_client_socket.h"
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/bind_helpers.h" 10 #include "base/bind_helpers.h"
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 // TODO(mmenke): Just copying specific parameters seems highly regression 77 // TODO(mmenke): Just copying specific parameters seems highly regression
78 // prone. Should have a better way to do this. 78 // prone. Should have a better way to do this.
79 session_params.host_mapping_rules = reference_params->host_mapping_rules; 79 session_params.host_mapping_rules = reference_params->host_mapping_rules;
80 session_params.ignore_certificate_errors = 80 session_params.ignore_certificate_errors =
81 reference_params->ignore_certificate_errors; 81 reference_params->ignore_certificate_errors;
82 session_params.testing_fixed_http_port = 82 session_params.testing_fixed_http_port =
83 reference_params->testing_fixed_http_port; 83 reference_params->testing_fixed_http_port;
84 session_params.testing_fixed_https_port = 84 session_params.testing_fixed_https_port =
85 reference_params->testing_fixed_https_port; 85 reference_params->testing_fixed_https_port;
86 session_params.next_protos = reference_params->next_protos; 86 session_params.next_protos = reference_params->next_protos;
87 session_params.trusted_spdy_proxy = reference_params->trusted_spdy_proxy;
88 session_params.forced_spdy_exclusions = 87 session_params.forced_spdy_exclusions =
89 reference_params->forced_spdy_exclusions; 88 reference_params->forced_spdy_exclusions;
90 session_params.use_alternative_services = 89 session_params.use_alternative_services =
91 reference_params->use_alternative_services; 90 reference_params->use_alternative_services;
92 } 91 }
93 92
94 network_session_.reset(new net::HttpNetworkSession(session_params)); 93 network_session_.reset(new net::HttpNetworkSession(session_params));
95 } 94 }
96 95
97 ProxyResolvingClientSocket::~ProxyResolvingClientSocket() { 96 ProxyResolvingClientSocket::~ProxyResolvingClientSocket() {
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after
431 return 0; 430 return 0;
432 } 431 }
433 432
434 void ProxyResolvingClientSocket::CloseTransportSocket() { 433 void ProxyResolvingClientSocket::CloseTransportSocket() {
435 if (transport_.get() && transport_->socket()) 434 if (transport_.get() && transport_->socket())
436 transport_->socket()->Disconnect(); 435 transport_->socket()->Disconnect();
437 transport_.reset(); 436 transport_.reset();
438 } 437 }
439 438
440 } // namespace jingle_glue 439 } // namespace jingle_glue
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698