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

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

Issue 959503003: Remove ServiceDiscoveryClient* from PrivetHTTPAsynchronousFactoryImpl interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fixEstablish
Patch Set: Tue Feb 24 23:11:53 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
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 786c98be16cbcd2f96c4930a68f47d58d2925318..ab2ade2b052326fc166f10f0b097eaeed3d840a6 100644
--- a/chrome/browser/local_discovery/privet_http_asynchronous_factory.cc
+++ b/chrome/browser/local_discovery/privet_http_asynchronous_factory.cc
@@ -15,7 +15,6 @@ namespace local_discovery {
// static
scoped_ptr<PrivetHTTPAsynchronousFactory>
PrivetHTTPAsynchronousFactory::CreateInstance(
- ServiceDiscoveryClient* service_discovery_client,
net::URLRequestContextGetter* request_context) {
#if defined(OS_MACOSX)
return make_scoped_ptr<PrivetHTTPAsynchronousFactory>(
@@ -23,8 +22,7 @@ PrivetHTTPAsynchronousFactory::CreateInstance(
#else
return make_scoped_ptr<PrivetHTTPAsynchronousFactory>(
- new PrivetHTTPAsynchronousFactoryImpl(service_discovery_client,
- request_context));
+ new PrivetHTTPAsynchronousFactoryImpl(request_context));
#endif
}

Powered by Google App Engine
This is Rietveld 408576698