| Index: chrome/browser/local_discovery/privet_http_asynchronous_factory.cc
|
| diff --git a/chrome/browser/local_discovery/privet_http_asynchronous_factory.cc b/chrome/browser/local_discovery/privet_http_asynchronous_factory.cc
|
| index 786c98be16cbcd2f96c4930a68f47d58d2925318..ab2ade2b052326fc166f10f0b097eaeed3d840a6 100644
|
| --- a/chrome/browser/local_discovery/privet_http_asynchronous_factory.cc
|
| +++ b/chrome/browser/local_discovery/privet_http_asynchronous_factory.cc
|
| @@ -15,7 +15,6 @@ namespace local_discovery {
|
| // static
|
| scoped_ptr<PrivetHTTPAsynchronousFactory>
|
| PrivetHTTPAsynchronousFactory::CreateInstance(
|
| - ServiceDiscoveryClient* service_discovery_client,
|
| net::URLRequestContextGetter* request_context) {
|
| #if defined(OS_MACOSX)
|
| return make_scoped_ptr<PrivetHTTPAsynchronousFactory>(
|
| @@ -23,8 +22,7 @@ PrivetHTTPAsynchronousFactory::CreateInstance(
|
|
|
| #else
|
| return make_scoped_ptr<PrivetHTTPAsynchronousFactory>(
|
| - new PrivetHTTPAsynchronousFactoryImpl(service_discovery_client,
|
| - request_context));
|
| + new PrivetHTTPAsynchronousFactoryImpl(request_context));
|
| #endif
|
| }
|
|
|
|
|