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

Unified Diff: net/http/http_pipelined_host_forced.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/http/http_pipelined_host_forced.cc
diff --git a/net/http/http_pipelined_host_forced.cc b/net/http/http_pipelined_host_forced.cc
index 8059d848d73904bde01b0d2df4b7e1df09b8a09d..5e67c6f4c4dfcec90ba869f06bc2e53814175c6d 100644
--- a/net/http/http_pipelined_host_forced.cc
+++ b/net/http/http_pipelined_host_forced.cc
@@ -16,9 +16,7 @@ HttpPipelinedHostForced::HttpPipelinedHostForced(
HttpPipelinedHost::Delegate* delegate,
const Key& key,
HttpPipelinedConnection::Factory* factory)
- : delegate_(delegate),
- key_(key),
- factory_(factory) {
+ : delegate_(delegate), key_(key), factory_(factory) {
if (!factory) {
factory_.reset(new HttpPipelinedConnectionImpl::Factory());
}
@@ -39,9 +37,14 @@ HttpPipelinedStream* HttpPipelinedHostForced::CreateStreamOnNewPipeline(
scoped_ptr<BufferedWriteStreamSocket> buffered_socket(
new BufferedWriteStreamSocket(connection->PassSocket()));
connection->SetSocket(buffered_socket.PassAs<StreamSocket>());
- pipeline_.reset(factory_->CreateNewPipeline(
- connection, this, key_.origin(), used_ssl_config, used_proxy_info,
- net_log, was_npn_negotiated, protocol_negotiated));
+ pipeline_.reset(factory_->CreateNewPipeline(connection,
+ this,
+ key_.origin(),
+ used_ssl_config,
+ used_proxy_info,
+ net_log,
+ was_npn_negotiated,
+ protocol_negotiated));
return pipeline_->CreateNewStream();
}

Powered by Google App Engine
This is Rietveld 408576698