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 1eeacdd..255d7b6 100644 --- a/net/http/http_cache.h +++ b/net/http/http_cache.h @@ -114,7 +114,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, @@ -198,6 +198,7 @@ class HttpCache : public HttpTransactionFactory, class BackendCallback; class MetadataWriter; + class SSLHostInfoFactoryAdaptor; class Transaction; class WorkItem; friend class Transaction; @@ -351,6 +352,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_; |