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

Unified Diff: net/url_request/protocol_intercept_job_factory.cc

Issue 266243004: Clang format slam. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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: net/url_request/protocol_intercept_job_factory.cc
diff --git a/net/url_request/protocol_intercept_job_factory.cc b/net/url_request/protocol_intercept_job_factory.cc
index d0f92f4bff376c1c7a26cacdb92ab0cca31b16be..a7dd50fb68377e2a9afa7e1ac1a8336cf5d103d5 100644
--- a/net/url_request/protocol_intercept_job_factory.cc
+++ b/net/url_request/protocol_intercept_job_factory.cc
@@ -15,15 +15,16 @@ ProtocolInterceptJobFactory::ProtocolInterceptJobFactory(
protocol_handler_(protocol_handler.Pass()) {
}
-ProtocolInterceptJobFactory::~ProtocolInterceptJobFactory() {}
+ProtocolInterceptJobFactory::~ProtocolInterceptJobFactory() {
+}
URLRequestJob* ProtocolInterceptJobFactory::MaybeCreateJobWithProtocolHandler(
const std::string& scheme,
URLRequest* request,
NetworkDelegate* network_delegate) const {
DCHECK(CalledOnValidThread());
- URLRequestJob* job = protocol_handler_->MaybeCreateJob(request,
- network_delegate);
+ URLRequestJob* job =
+ protocol_handler_->MaybeCreateJob(request, network_delegate);
if (job)
return job;
return job_factory_->MaybeCreateJobWithProtocolHandler(

Powered by Google App Engine
This is Rietveld 408576698