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

Side by Side Diff: net/url_request/url_request_context_storage.h

Issue 1701063002: CookieStore: Remove reference counting. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@threadsafe
Patch Set: Small fix Created 4 years, 9 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 #ifndef NET_URL_REQUEST_URL_REQUEST_CONTEXT_STORAGE_H_ 5 #ifndef NET_URL_REQUEST_URL_REQUEST_CONTEXT_STORAGE_H_
6 #define NET_URL_REQUEST_URL_REQUEST_CONTEXT_STORAGE_H_ 6 #define NET_URL_REQUEST_URL_REQUEST_CONTEXT_STORAGE_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 void set_host_resolver(scoped_ptr<HostResolver> host_resolver); 50 void set_host_resolver(scoped_ptr<HostResolver> host_resolver);
51 void set_cert_verifier(scoped_ptr<CertVerifier> cert_verifier); 51 void set_cert_verifier(scoped_ptr<CertVerifier> cert_verifier);
52 void set_channel_id_service(scoped_ptr<ChannelIDService> channel_id_service); 52 void set_channel_id_service(scoped_ptr<ChannelIDService> channel_id_service);
53 void set_http_auth_handler_factory( 53 void set_http_auth_handler_factory(
54 scoped_ptr<HttpAuthHandlerFactory> http_auth_handler_factory); 54 scoped_ptr<HttpAuthHandlerFactory> http_auth_handler_factory);
55 void set_proxy_service(scoped_ptr<ProxyService> proxy_service); 55 void set_proxy_service(scoped_ptr<ProxyService> proxy_service);
56 void set_ssl_config_service(SSLConfigService* ssl_config_service); 56 void set_ssl_config_service(SSLConfigService* ssl_config_service);
57 void set_network_delegate(scoped_ptr<NetworkDelegate> network_delegate); 57 void set_network_delegate(scoped_ptr<NetworkDelegate> network_delegate);
58 void set_http_server_properties( 58 void set_http_server_properties(
59 scoped_ptr<HttpServerProperties> http_server_properties); 59 scoped_ptr<HttpServerProperties> http_server_properties);
60 void set_cookie_store(CookieStore* cookie_store); 60 void set_cookie_store(scoped_ptr<CookieStore> cookie_store);
61 void set_transport_security_state( 61 void set_transport_security_state(
62 scoped_ptr<TransportSecurityState> transport_security_state); 62 scoped_ptr<TransportSecurityState> transport_security_state);
63 void set_http_network_session( 63 void set_http_network_session(
64 scoped_ptr<HttpNetworkSession> http_network_session); 64 scoped_ptr<HttpNetworkSession> http_network_session);
65 void set_http_transaction_factory( 65 void set_http_transaction_factory(
66 scoped_ptr<HttpTransactionFactory> http_transaction_factory); 66 scoped_ptr<HttpTransactionFactory> http_transaction_factory);
67 void set_job_factory(scoped_ptr<URLRequestJobFactory> job_factory); 67 void set_job_factory(scoped_ptr<URLRequestJobFactory> job_factory);
68 void set_throttler_manager( 68 void set_throttler_manager(
69 scoped_ptr<URLRequestThrottlerManager> throttler_manager); 69 scoped_ptr<URLRequestThrottlerManager> throttler_manager);
70 void set_backoff_manager( 70 void set_backoff_manager(
(...skipping 20 matching lines...) Expand all
91 scoped_ptr<CertVerifier> cert_verifier_; 91 scoped_ptr<CertVerifier> cert_verifier_;
92 // The ChannelIDService must outlive the HttpTransactionFactory. 92 // The ChannelIDService must outlive the HttpTransactionFactory.
93 scoped_ptr<ChannelIDService> channel_id_service_; 93 scoped_ptr<ChannelIDService> channel_id_service_;
94 scoped_ptr<HttpAuthHandlerFactory> http_auth_handler_factory_; 94 scoped_ptr<HttpAuthHandlerFactory> http_auth_handler_factory_;
95 scoped_ptr<ProxyService> proxy_service_; 95 scoped_ptr<ProxyService> proxy_service_;
96 // TODO(willchan): Remove refcounting on these members. 96 // TODO(willchan): Remove refcounting on these members.
97 scoped_refptr<SSLConfigService> ssl_config_service_; 97 scoped_refptr<SSLConfigService> ssl_config_service_;
98 scoped_ptr<NetworkDelegate> network_delegate_; 98 scoped_ptr<NetworkDelegate> network_delegate_;
99 scoped_ptr<HttpServerProperties> http_server_properties_; 99 scoped_ptr<HttpServerProperties> http_server_properties_;
100 scoped_ptr<HttpUserAgentSettings> http_user_agent_settings_; 100 scoped_ptr<HttpUserAgentSettings> http_user_agent_settings_;
101 scoped_refptr<CookieStore> cookie_store_; 101 scoped_ptr<CookieStore> cookie_store_;
102 scoped_ptr<TransportSecurityState> transport_security_state_; 102 scoped_ptr<TransportSecurityState> transport_security_state_;
103 103
104 // Not actually pointed at by the URLRequestContext, but may be used (but not 104 // Not actually pointed at by the URLRequestContext, but may be used (but not
105 // owned) by the HttpTransactionFactory. 105 // owned) by the HttpTransactionFactory.
106 scoped_ptr<HttpNetworkSession> http_network_session_; 106 scoped_ptr<HttpNetworkSession> http_network_session_;
107 107
108 scoped_ptr<HttpTransactionFactory> http_transaction_factory_; 108 scoped_ptr<HttpTransactionFactory> http_transaction_factory_;
109 scoped_ptr<URLRequestJobFactory> job_factory_; 109 scoped_ptr<URLRequestJobFactory> job_factory_;
110 scoped_ptr<URLRequestThrottlerManager> throttler_manager_; 110 scoped_ptr<URLRequestThrottlerManager> throttler_manager_;
111 scoped_ptr<URLRequestBackoffManager> backoff_manager_; 111 scoped_ptr<URLRequestBackoffManager> backoff_manager_;
112 scoped_ptr<SdchManager> sdch_manager_; 112 scoped_ptr<SdchManager> sdch_manager_;
113 113
114 DISALLOW_COPY_AND_ASSIGN(URLRequestContextStorage); 114 DISALLOW_COPY_AND_ASSIGN(URLRequestContextStorage);
115 }; 115 };
116 116
117 } // namespace net 117 } // namespace net
118 118
119 #endif // NET_URL_REQUEST_URL_REQUEST_CONTEXT_STORAGE_H_ 119 #endif // NET_URL_REQUEST_URL_REQUEST_CONTEXT_STORAGE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698