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

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

Issue 320683002: Extracted PrivetV1HTTPClient with Privet v1 specific operations. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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_impl.cc
diff --git a/chrome/browser/local_discovery/privet_http_asynchronous_factory_impl.cc b/chrome/browser/local_discovery/privet_http_asynchronous_factory_impl.cc
index 80d207c99e675ab41be33a55e201fa9e403ba39c..b5e43d8730ae2cbf2e632e1d69742d95894d2414 100644
--- a/chrome/browser/local_discovery/privet_http_asynchronous_factory_impl.cc
+++ b/chrome/browser/local_discovery/privet_http_asynchronous_factory_impl.cc
@@ -31,9 +31,11 @@ PrivetHTTPAsynchronousFactoryImpl::PrivetHTTPAsynchronousFactoryImpl(
ServiceDiscoveryClient* service_discovery_client,
net::URLRequestContextGetter* request_context)
: service_discovery_client_(service_discovery_client),
- request_context_(request_context) {}
+ request_context_(request_context) {
+}
-PrivetHTTPAsynchronousFactoryImpl::~PrivetHTTPAsynchronousFactoryImpl() {}
+PrivetHTTPAsynchronousFactoryImpl::~PrivetHTTPAsynchronousFactoryImpl() {
+}
scoped_ptr<PrivetHTTPResolution>
PrivetHTTPAsynchronousFactoryImpl::CreatePrivetHTTP(
@@ -70,7 +72,8 @@ PrivetHTTPAsynchronousFactoryImpl::ResolutionImpl::ResolutionImpl(
base::Bind(&ResolutionImpl::ResolveComplete, base::Unretained(this)));
}
-PrivetHTTPAsynchronousFactoryImpl::ResolutionImpl::~ResolutionImpl() {}
+PrivetHTTPAsynchronousFactoryImpl::ResolutionImpl::~ResolutionImpl() {
+}
void PrivetHTTPAsynchronousFactoryImpl::ResolutionImpl::Start() {
resolver_->Start();

Powered by Google App Engine
This is Rietveld 408576698