OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_HTTP_ASYNCHRONOUS_FACTORY_IMPL_H_ | 5 #ifndef CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_HTTP_ASYNCHRONOUS_FACTORY_IMPL_H_ |
6 #define CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_HTTP_ASYNCHRONOUS_FACTORY_IMPL_H_ | 6 #define CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_HTTP_ASYNCHRONOUS_FACTORY_IMPL_H_ |
7 | 7 |
8 #include "chrome/browser/local_discovery/privet_http.h" | 8 #include "chrome/browser/local_discovery/privet_http.h" |
9 #include "chrome/browser/local_discovery/privet_http_asynchronous_factory.h" | 9 #include "chrome/browser/local_discovery/privet_http_asynchronous_factory.h" |
10 #include "chrome/common/local_discovery/service_discovery_client.h" | 10 #include "chrome/common/local_discovery/service_discovery_client.h" |
11 | 11 |
12 namespace local_discovery { | 12 namespace local_discovery { |
13 | 13 |
14 class PrivetHTTPAsynchronousFactoryImpl : public PrivetHTTPAsynchronousFactory { | 14 class PrivetHTTPAsynchronousFactoryImpl : public PrivetHTTPAsynchronousFactory { |
15 public: | 15 public: |
16 PrivetHTTPAsynchronousFactoryImpl( | 16 explicit PrivetHTTPAsynchronousFactoryImpl( |
17 ServiceDiscoveryClient* service_discovery_client, | |
18 net::URLRequestContextGetter* request_context); | 17 net::URLRequestContextGetter* request_context); |
19 ~PrivetHTTPAsynchronousFactoryImpl() override; | 18 ~PrivetHTTPAsynchronousFactoryImpl() override; |
20 | 19 |
21 scoped_ptr<PrivetHTTPResolution> CreatePrivetHTTP( | 20 scoped_ptr<PrivetHTTPResolution> CreatePrivetHTTP( |
22 const std::string& name, | 21 const std::string& name, |
23 const net::HostPortPair& address, | 22 const net::HostPortPair& address, |
24 const ResultCallback& callback) override; | 23 const ResultCallback& callback) override; |
25 | 24 |
26 private: | 25 private: |
27 class ResolutionImpl : public PrivetHTTPResolution { | 26 class ResolutionImpl : public PrivetHTTPResolution { |
28 public: | 27 public: |
29 ResolutionImpl(const std::string& name, | 28 ResolutionImpl(const std::string& name, |
30 const net::HostPortPair& address, | 29 const net::HostPortPair& address, |
31 const ResultCallback& callback, | 30 const ResultCallback& callback, |
32 ServiceDiscoveryClient* service_discovery_client, | |
33 net::URLRequestContextGetter* request_context); | 31 net::URLRequestContextGetter* request_context); |
34 ~ResolutionImpl() override; | 32 ~ResolutionImpl() override; |
35 | 33 |
36 void Start() override; | 34 void Start() override; |
37 const std::string& GetName() override; | 35 const std::string& GetName() override; |
38 | 36 |
39 private: | 37 private: |
40 void ResolveComplete(bool success, | 38 void ResolveComplete(bool success, |
41 const net::IPAddressNumber& address_ipv4, | 39 const net::IPAddressNumber& address_ipv4, |
42 const net::IPAddressNumber& address_ipv6); | 40 const net::IPAddressNumber& address_ipv6); |
43 | 41 |
44 std::string name_; | 42 std::string name_; |
45 scoped_ptr<LocalDomainResolver> resolver_; | 43 scoped_ptr<LocalDomainResolver> resolver_; |
46 net::HostPortPair hostport_; | 44 net::HostPortPair hostport_; |
47 ResultCallback callback_; | 45 ResultCallback callback_; |
48 scoped_refptr<net::URLRequestContextGetter> request_context_; | 46 scoped_refptr<net::URLRequestContextGetter> request_context_; |
| 47 scoped_refptr<ServiceDiscoverySharedClient> service_discovery_client_; |
49 }; | 48 }; |
50 | 49 |
51 ServiceDiscoveryClient* service_discovery_client_; | |
52 scoped_refptr<net::URLRequestContextGetter> request_context_; | 50 scoped_refptr<net::URLRequestContextGetter> request_context_; |
53 }; | 51 }; |
54 | 52 |
55 } // namespace local_discovery | 53 } // namespace local_discovery |
56 | 54 |
57 #endif // CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_HTTP_ASYNCHRONOUS_FACTORY_IMPL_
H_ | 55 #endif // CHROME_BROWSER_LOCAL_DISCOVERY_PRIVET_HTTP_ASYNCHRONOUS_FACTORY_IMPL_
H_ |
OLD | NEW |