| Index: chrome/browser/local_discovery/privet_http_asynchronous_factory_impl.h
|
| diff --git a/chrome/browser/local_discovery/privet_http_asynchronous_factory_impl.h b/chrome/browser/local_discovery/privet_http_asynchronous_factory_impl.h
|
| index 10cda8ce5e292570bdee337d5a1231422e5a95f5..243e7759cafbb5698f7760907afb735d7de43a81 100644
|
| --- a/chrome/browser/local_discovery/privet_http_asynchronous_factory_impl.h
|
| +++ b/chrome/browser/local_discovery/privet_http_asynchronous_factory_impl.h
|
| @@ -11,10 +11,11 @@
|
|
|
| namespace local_discovery {
|
|
|
| +class ServiceDiscoverySharedClient;
|
| +
|
| class PrivetHTTPAsynchronousFactoryImpl : public PrivetHTTPAsynchronousFactory {
|
| public:
|
| - PrivetHTTPAsynchronousFactoryImpl(
|
| - ServiceDiscoveryClient* service_discovery_client,
|
| + explicit PrivetHTTPAsynchronousFactoryImpl(
|
| net::URLRequestContextGetter* request_context);
|
| ~PrivetHTTPAsynchronousFactoryImpl() override;
|
|
|
| @@ -29,7 +30,6 @@ class PrivetHTTPAsynchronousFactoryImpl : public PrivetHTTPAsynchronousFactory {
|
| ResolutionImpl(const std::string& name,
|
| const net::HostPortPair& address,
|
| const ResultCallback& callback,
|
| - ServiceDiscoveryClient* service_discovery_client,
|
| net::URLRequestContextGetter* request_context);
|
| ~ResolutionImpl() override;
|
|
|
| @@ -46,9 +46,9 @@ class PrivetHTTPAsynchronousFactoryImpl : public PrivetHTTPAsynchronousFactory {
|
| net::HostPortPair hostport_;
|
| ResultCallback callback_;
|
| scoped_refptr<net::URLRequestContextGetter> request_context_;
|
| + scoped_refptr<ServiceDiscoverySharedClient> service_discovery_client_;
|
| };
|
|
|
| - ServiceDiscoveryClient* service_discovery_client_;
|
| scoped_refptr<net::URLRequestContextGetter> request_context_;
|
| };
|
|
|
|
|