| Index: net/http/http_cache.cc
|
| ===================================================================
|
| --- net/http/http_cache.cc (revision 50775)
|
| +++ net/http/http_cache.cc (working copy)
|
| @@ -222,8 +222,7 @@
|
|
|
| //-----------------------------------------------------------------------------
|
|
|
| -HttpCache::HttpCache(NetworkChangeNotifier* network_change_notifier,
|
| - HostResolver* host_resolver, ProxyService* proxy_service,
|
| +HttpCache::HttpCache(HostResolver* host_resolver, ProxyService* proxy_service,
|
| SSLConfigService* ssl_config_service,
|
| HttpAuthHandlerFactory* http_auth_handler_factory,
|
| HttpNetworkDelegate* network_delegate,
|
| @@ -233,11 +232,9 @@
|
| temp_backend_(NULL),
|
| building_backend_(false),
|
| mode_(NORMAL),
|
| - network_layer_(HttpNetworkLayer::CreateFactory(
|
| - network_change_notifier, host_resolver, proxy_service,
|
| - ssl_config_service, http_auth_handler_factory,
|
| - network_delegate,
|
| - net_log)),
|
| + network_layer_(HttpNetworkLayer::CreateFactory(host_resolver,
|
| + proxy_service, ssl_config_service, http_auth_handler_factory,
|
| + network_delegate, net_log)),
|
| ALLOW_THIS_IN_INITIALIZER_LIST(task_factory_(this)),
|
| enable_range_support_(true) {
|
| }
|
|
|