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 |
deleted file mode 100644 |
index c3014cbda98c68c41e0d7af0642446870496eedb..0000000000000000000000000000000000000000 |
--- a/chrome/browser/local_discovery/privet_http_asynchronous_factory_mac.cc |
+++ /dev/null |
@@ -1,51 +0,0 @@ |
-// Copyright 2014 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#include "chrome/browser/local_discovery/privet_http_asynchronous_factory_mac.h" |
- |
-#include "chrome/browser/local_discovery/privet_http_impl.h" |
- |
-namespace local_discovery { |
- |
-PrivetHTTPAsynchronousFactoryMac::PrivetHTTPAsynchronousFactoryMac( |
- net::URLRequestContextGetter* request_context) |
- : request_context_(request_context) { |
-} |
- |
-PrivetHTTPAsynchronousFactoryMac::~PrivetHTTPAsynchronousFactoryMac() { |
-} |
- |
-scoped_ptr<PrivetHTTPResolution> |
-PrivetHTTPAsynchronousFactoryMac::CreatePrivetHTTP( |
- const std::string& name, |
- const net::HostPortPair& address, |
- const ResultCallback& callback) { |
- return scoped_ptr<PrivetHTTPResolution>( |
- new ResolutionMac(request_context_, name, address, callback)); |
-} |
- |
-PrivetHTTPAsynchronousFactoryMac::ResolutionMac::ResolutionMac( |
- net::URLRequestContextGetter* request_context, |
- const std::string& name, |
- const net::HostPortPair& host_port, |
- const ResultCallback& callback) |
- : request_context_(request_context), |
- name_(name), |
- host_port_(host_port), |
- callback_(callback) { |
-} |
- |
-PrivetHTTPAsynchronousFactoryMac::ResolutionMac::~ResolutionMac() { |
-} |
- |
-void PrivetHTTPAsynchronousFactoryMac::ResolutionMac::Start() { |
- callback_.Run(scoped_ptr<PrivetHTTPClient>( |
- new PrivetHTTPClientImpl(name_, host_port_, request_context_))); |
-} |
- |
-const std::string& PrivetHTTPAsynchronousFactoryMac::ResolutionMac::GetName() { |
- return name_; |
-} |
- |
-} // namespace local_discovery |