diff options
Diffstat (limited to 'net/http/http_cache.h')
-rw-r--r-- | net/http/http_cache.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/net/http/http_cache.h b/net/http/http_cache.h index 775d035..1406cd0 100644 --- a/net/http/http_cache.h +++ b/net/http/http_cache.h @@ -116,7 +116,7 @@ class HttpCache : public HttpTransactionFactory, }; // The disk cache is initialized lazily (by CreateTransaction) in this case. - // The HttpCache takes ownership of the |backend_factory|. + // The HttpCache takes ownership of the |backend_factory|. HttpCache(HostResolver* host_resolver, DnsRRResolver* dnsrr_resolver, ProxyService* proxy_service, @@ -200,6 +200,7 @@ class HttpCache : public HttpTransactionFactory, class BackendCallback; class MetadataWriter; + class SSLHostInfoFactoryAdaptor; class Transaction; class WorkItem; friend class Transaction; @@ -353,6 +354,8 @@ class HttpCache : public HttpTransactionFactory, Mode mode_; + scoped_ptr<SSLHostInfoFactoryAdaptor> ssl_host_info_factory_; + scoped_ptr<HttpTransactionFactory> network_layer_; scoped_ptr<disk_cache::Backend> disk_cache_; |