mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
36 lines
1.2 KiB
C++
36 lines
1.2 KiB
C++
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
||
|
// Use of this source code is governed by a BSD-style license that can be
|
||
|
// found in the LICENSE file.
|
||
|
|
||
|
#include "net/http/http_network_session_peer.h"
|
||
|
|
||
|
#include "net/http/http_proxy_client_socket_pool.h"
|
||
|
#include "net/proxy_resolution/proxy_resolution_service.h"
|
||
|
#include "net/socket/client_socket_pool_manager.h"
|
||
|
#include "net/socket/socks_client_socket_pool.h"
|
||
|
#include "net/socket/ssl_client_socket_pool.h"
|
||
|
#include "net/socket/transport_client_socket_pool.h"
|
||
|
|
||
|
namespace net {
|
||
|
|
||
|
HttpNetworkSessionPeer::HttpNetworkSessionPeer(HttpNetworkSession* session)
|
||
|
: session_(session) {}
|
||
|
|
||
|
HttpNetworkSessionPeer::~HttpNetworkSessionPeer() = default;
|
||
|
|
||
|
void HttpNetworkSessionPeer::SetClientSocketPoolManager(
|
||
|
std::unique_ptr<ClientSocketPoolManager> socket_pool_manager) {
|
||
|
session_->normal_socket_pool_manager_.swap(socket_pool_manager);
|
||
|
}
|
||
|
|
||
|
void HttpNetworkSessionPeer::SetHttpStreamFactory(
|
||
|
std::unique_ptr<HttpStreamFactory> http_stream_factory) {
|
||
|
session_->http_stream_factory_.swap(http_stream_factory);
|
||
|
}
|
||
|
|
||
|
HttpNetworkSession::Params* HttpNetworkSessionPeer::params() {
|
||
|
return &(session_->params_);
|
||
|
}
|
||
|
|
||
|
} // namespace net
|