mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
146 lines
5.6 KiB
C
146 lines
5.6 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.
|
||
|
|
||
|
#ifndef NET_URL_REQUEST_URL_REQUEST_CONTEXT_STORAGE_H_
|
||
|
#define NET_URL_REQUEST_URL_REQUEST_CONTEXT_STORAGE_H_
|
||
|
|
||
|
#include <memory>
|
||
|
|
||
|
#include "base/macros.h"
|
||
|
#include "base/memory/ref_counted.h"
|
||
|
#include "build/buildflag.h"
|
||
|
#include "net/base/net_export.h"
|
||
|
#include "net/net_buildflags.h"
|
||
|
|
||
|
namespace net {
|
||
|
|
||
|
class CertVerifier;
|
||
|
class ChannelIDService;
|
||
|
class CookieStore;
|
||
|
class CTPolicyEnforcer;
|
||
|
class CTVerifier;
|
||
|
class HostResolver;
|
||
|
class HttpAuthHandlerFactory;
|
||
|
class HttpNetworkSession;
|
||
|
class HttpServerProperties;
|
||
|
class HttpTransactionFactory;
|
||
|
class HttpUserAgentSettings;
|
||
|
class NetLog;
|
||
|
class NetworkDelegate;
|
||
|
class ProxyDelegate;
|
||
|
class ProxyResolutionService;
|
||
|
class SSLConfigService;
|
||
|
class TransportSecurityState;
|
||
|
class URLRequestContext;
|
||
|
class URLRequestJobFactory;
|
||
|
class URLRequestThrottlerManager;
|
||
|
|
||
|
#if BUILDFLAG(ENABLE_REPORTING)
|
||
|
class NetworkErrorLoggingService;
|
||
|
class ReportingService;
|
||
|
#endif // BUILDFLAG(ENABLE_REPORTING)
|
||
|
|
||
|
// URLRequestContextStorage is a helper class that provides storage for unowned
|
||
|
// member variables of URLRequestContext.
|
||
|
class NET_EXPORT URLRequestContextStorage {
|
||
|
public:
|
||
|
// Note that URLRequestContextStorage does not acquire a reference to
|
||
|
// URLRequestContext, since it is often designed to be embedded in a
|
||
|
// URLRequestContext subclass.
|
||
|
explicit URLRequestContextStorage(URLRequestContext* context);
|
||
|
~URLRequestContextStorage();
|
||
|
|
||
|
// These setters will set both the member variables and call the setter on the
|
||
|
// URLRequestContext object. In all cases, ownership is passed to |this|.
|
||
|
|
||
|
void set_net_log(std::unique_ptr<NetLog> net_log);
|
||
|
void set_host_resolver(std::unique_ptr<HostResolver> host_resolver);
|
||
|
void set_cert_verifier(std::unique_ptr<CertVerifier> cert_verifier);
|
||
|
void set_channel_id_service(
|
||
|
std::unique_ptr<ChannelIDService> channel_id_service);
|
||
|
void set_http_auth_handler_factory(
|
||
|
std::unique_ptr<HttpAuthHandlerFactory> http_auth_handler_factory);
|
||
|
void set_proxy_delegate(std::unique_ptr<ProxyDelegate> proxy_delegate);
|
||
|
void set_network_delegate(std::unique_ptr<NetworkDelegate> network_delegate);
|
||
|
void set_proxy_resolution_service(
|
||
|
std::unique_ptr<ProxyResolutionService> proxy_resolution_service);
|
||
|
void set_ssl_config_service(
|
||
|
scoped_refptr<SSLConfigService> ssl_config_service);
|
||
|
void set_http_server_properties(
|
||
|
std::unique_ptr<HttpServerProperties> http_server_properties);
|
||
|
void set_cookie_store(std::unique_ptr<CookieStore> cookie_store);
|
||
|
void set_transport_security_state(
|
||
|
std::unique_ptr<TransportSecurityState> transport_security_state);
|
||
|
void set_cert_transparency_verifier(
|
||
|
std::unique_ptr<CTVerifier> cert_transparency_verifier);
|
||
|
void set_ct_policy_enforcer(
|
||
|
std::unique_ptr<CTPolicyEnforcer> ct_policy_enforcer);
|
||
|
void set_http_network_session(
|
||
|
std::unique_ptr<HttpNetworkSession> http_network_session);
|
||
|
void set_http_transaction_factory(
|
||
|
std::unique_ptr<HttpTransactionFactory> http_transaction_factory);
|
||
|
void set_job_factory(std::unique_ptr<URLRequestJobFactory> job_factory);
|
||
|
void set_throttler_manager(
|
||
|
std::unique_ptr<URLRequestThrottlerManager> throttler_manager);
|
||
|
void set_http_user_agent_settings(
|
||
|
std::unique_ptr<HttpUserAgentSettings> http_user_agent_settings);
|
||
|
|
||
|
#if BUILDFLAG(ENABLE_REPORTING)
|
||
|
void set_reporting_service(
|
||
|
std::unique_ptr<ReportingService> reporting_service);
|
||
|
|
||
|
void set_network_error_logging_service(
|
||
|
std::unique_ptr<NetworkErrorLoggingService>
|
||
|
network_error_logging_service);
|
||
|
#endif // BUILDFLAG(ENABLE_REPORTING)
|
||
|
|
||
|
// Everything else can be access through the URLRequestContext, but this
|
||
|
// cannot. Having an accessor for it makes usage a little cleaner.
|
||
|
HttpNetworkSession* http_network_session() const {
|
||
|
return http_network_session_.get();
|
||
|
}
|
||
|
|
||
|
private:
|
||
|
// Not owned.
|
||
|
URLRequestContext* const context_;
|
||
|
|
||
|
// Owned members.
|
||
|
std::unique_ptr<NetLog> net_log_;
|
||
|
std::unique_ptr<HostResolver> host_resolver_;
|
||
|
std::unique_ptr<CertVerifier> cert_verifier_;
|
||
|
// The ChannelIDService must outlive the HttpTransactionFactory.
|
||
|
std::unique_ptr<ChannelIDService> channel_id_service_;
|
||
|
std::unique_ptr<HttpAuthHandlerFactory> http_auth_handler_factory_;
|
||
|
std::unique_ptr<ProxyDelegate> proxy_delegate_;
|
||
|
std::unique_ptr<NetworkDelegate> network_delegate_;
|
||
|
std::unique_ptr<ProxyResolutionService> proxy_resolution_service_;
|
||
|
// TODO(willchan): Remove refcounting on this member.
|
||
|
scoped_refptr<SSLConfigService> ssl_config_service_;
|
||
|
std::unique_ptr<HttpServerProperties> http_server_properties_;
|
||
|
std::unique_ptr<HttpUserAgentSettings> http_user_agent_settings_;
|
||
|
std::unique_ptr<CookieStore> cookie_store_;
|
||
|
std::unique_ptr<TransportSecurityState> transport_security_state_;
|
||
|
std::unique_ptr<CTVerifier> cert_transparency_verifier_;
|
||
|
std::unique_ptr<CTPolicyEnforcer> ct_policy_enforcer_;
|
||
|
|
||
|
// Not actually pointed at by the URLRequestContext, but may be used (but not
|
||
|
// owned) by the HttpTransactionFactory.
|
||
|
std::unique_ptr<HttpNetworkSession> http_network_session_;
|
||
|
|
||
|
std::unique_ptr<HttpTransactionFactory> http_transaction_factory_;
|
||
|
std::unique_ptr<URLRequestJobFactory> job_factory_;
|
||
|
std::unique_ptr<URLRequestThrottlerManager> throttler_manager_;
|
||
|
|
||
|
#if BUILDFLAG(ENABLE_REPORTING)
|
||
|
std::unique_ptr<ReportingService> reporting_service_;
|
||
|
std::unique_ptr<NetworkErrorLoggingService> network_error_logging_service_;
|
||
|
#endif // BUILDFLAG(ENABLE_REPORTING)
|
||
|
|
||
|
DISALLOW_COPY_AND_ASSIGN(URLRequestContextStorage);
|
||
|
};
|
||
|
|
||
|
} // namespace net
|
||
|
|
||
|
#endif // NET_URL_REQUEST_URL_REQUEST_CONTEXT_STORAGE_H_
|