| Index: blimp/net/ssl_client_transport.cc
|
| diff --git a/blimp/net/ssl_client_transport.cc b/blimp/net/ssl_client_transport.cc
|
| index e5ccaf792130779b6a9cefb509bbfb087a5060bd..19f3b3c0b95ead7617616007a939129bbc78c086 100644
|
| --- a/blimp/net/ssl_client_transport.cc
|
| +++ b/blimp/net/ssl_client_transport.cc
|
| @@ -21,8 +21,10 @@ namespace blimp {
|
|
|
| SSLClientTransport::SSLClientTransport(const net::IPEndPoint& ip_endpoint,
|
| scoped_refptr<net::X509Certificate> cert,
|
| + BlimpConnectionStatistics* statistics,
|
| net::NetLog* net_log)
|
| - : TCPClientTransport(ip_endpoint, net_log), ip_endpoint_(ip_endpoint) {
|
| + : TCPClientTransport(ip_endpoint, statistics, net_log),
|
| + ip_endpoint_(ip_endpoint) {
|
| // Test code may pass in a null value for |cert|. Only spin up a CertVerifier
|
| // if there is a cert present.
|
| if (cert) {
|
|
|