| Index: chrome/browser/local_discovery/privet_http_asynchronous_factory_mac.cc
|
| diff --git a/chrome/browser/local_discovery/privet_http_asynchronous_factory_mac.cc b/chrome/browser/local_discovery/privet_http_asynchronous_factory_mac.cc
|
| index c268fe9e8ae3dcc959512009acb82bd5256cb156..c3014cbda98c68c41e0d7af0642446870496eedb 100644
|
| --- a/chrome/browser/local_discovery/privet_http_asynchronous_factory_mac.cc
|
| +++ b/chrome/browser/local_discovery/privet_http_asynchronous_factory_mac.cc
|
| @@ -10,9 +10,11 @@ namespace local_discovery {
|
|
|
| PrivetHTTPAsynchronousFactoryMac::PrivetHTTPAsynchronousFactoryMac(
|
| net::URLRequestContextGetter* request_context)
|
| - : request_context_(request_context) {}
|
| + : request_context_(request_context) {
|
| +}
|
|
|
| -PrivetHTTPAsynchronousFactoryMac::~PrivetHTTPAsynchronousFactoryMac() {}
|
| +PrivetHTTPAsynchronousFactoryMac::~PrivetHTTPAsynchronousFactoryMac() {
|
| +}
|
|
|
| scoped_ptr<PrivetHTTPResolution>
|
| PrivetHTTPAsynchronousFactoryMac::CreatePrivetHTTP(
|
| @@ -31,9 +33,11 @@ PrivetHTTPAsynchronousFactoryMac::ResolutionMac::ResolutionMac(
|
| : request_context_(request_context),
|
| name_(name),
|
| host_port_(host_port),
|
| - callback_(callback) {}
|
| + callback_(callback) {
|
| +}
|
|
|
| -PrivetHTTPAsynchronousFactoryMac::ResolutionMac::~ResolutionMac() {}
|
| +PrivetHTTPAsynchronousFactoryMac::ResolutionMac::~ResolutionMac() {
|
| +}
|
|
|
| void PrivetHTTPAsynchronousFactoryMac::ResolutionMac::Start() {
|
| callback_.Run(scoped_ptr<PrivetHTTPClient>(
|
|
|