Index: net/http/http_pipelined_connection_impl.cc |
diff --git a/net/http/http_pipelined_connection_impl.cc b/net/http/http_pipelined_connection_impl.cc |
index 1679cbc9d1143cd30abff4e001fcd2455c3e6c31..141d58a027aa781ea7d4eb5ef6ba44a6233f88a3 100644 |
--- a/net/http/http_pipelined_connection_impl.cc |
+++ b/net/http/http_pipelined_connection_impl.cc |
@@ -52,6 +52,22 @@ Value* NetLogHostPortPairCallback(const HostPortPair* host_port_pair, |
} // anonymous namespace |
+HttpPipelinedConnection* |
+HttpPipelinedConnectionImpl::Factory::CreateNewPipeline( |
+ ClientSocketHandle* connection, |
+ HttpPipelinedConnection::Delegate* delegate, |
+ const HostPortPair& origin, |
+ const SSLConfig& used_ssl_config, |
+ const ProxyInfo& used_proxy_info, |
+ const BoundNetLog& net_log, |
+ bool was_npn_negotiated, |
+ NextProto protocol_negotiated) { |
+ return new HttpPipelinedConnectionImpl(connection, delegate, origin, |
+ used_ssl_config, used_proxy_info, |
+ net_log, was_npn_negotiated, |
+ protocol_negotiated); |
+} |
+ |
HttpPipelinedConnectionImpl::HttpPipelinedConnectionImpl( |
ClientSocketHandle* connection, |
HttpPipelinedConnection::Delegate* delegate, |