Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1688)

Unified Diff: chrome/browser/local_discovery/privet_http_asynchronous_factory.cc

Issue 954883003: Remove privet_http_asynchronous_factory_mac.* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Wed Feb 25 09:06:16 PST 2015 Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/local_discovery/privet_http_asynchronous_factory_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 ab2ade2b052326fc166f10f0b097eaeed3d840a6..3434344238f05ff9b4e56e63f01f299a71c0dbc0 100644
--- a/chrome/browser/local_discovery/privet_http_asynchronous_factory.cc
+++ b/chrome/browser/local_discovery/privet_http_asynchronous_factory.cc
@@ -4,11 +4,7 @@
#include "chrome/browser/local_discovery/privet_http_asynchronous_factory.h"
-#if defined(OS_MACOSX)
-#include "chrome/browser/local_discovery/privet_http_asynchronous_factory_mac.h"
-#else
#include "chrome/browser/local_discovery/privet_http_asynchronous_factory_impl.h"
-#endif
namespace local_discovery {
@@ -16,14 +12,8 @@ namespace local_discovery {
scoped_ptr<PrivetHTTPAsynchronousFactory>
PrivetHTTPAsynchronousFactory::CreateInstance(
net::URLRequestContextGetter* request_context) {
-#if defined(OS_MACOSX)
- return make_scoped_ptr<PrivetHTTPAsynchronousFactory>(
- new PrivetHTTPAsynchronousFactoryMac(request_context));
-
-#else
return make_scoped_ptr<PrivetHTTPAsynchronousFactory>(
new PrivetHTTPAsynchronousFactoryImpl(request_context));
-#endif
}
} // namespace local_discovery
« no previous file with comments | « no previous file | chrome/browser/local_discovery/privet_http_asynchronous_factory_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698