| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "jingle/glue/fake_ssl_client_socket.h" | 5 #include "jingle/glue/fake_ssl_client_socket.h" |
| 6 | 6 |
| 7 #include <cstdlib> | 7 #include <cstdlib> |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 337 } | 337 } |
| 338 | 338 |
| 339 net::NextProto FakeSSLClientSocket::GetNegotiatedProtocol() const { | 339 net::NextProto FakeSSLClientSocket::GetNegotiatedProtocol() const { |
| 340 return transport_socket_->GetNegotiatedProtocol(); | 340 return transport_socket_->GetNegotiatedProtocol(); |
| 341 } | 341 } |
| 342 | 342 |
| 343 bool FakeSSLClientSocket::GetSSLInfo(net::SSLInfo* ssl_info) { | 343 bool FakeSSLClientSocket::GetSSLInfo(net::SSLInfo* ssl_info) { |
| 344 return transport_socket_->GetSSLInfo(ssl_info); | 344 return transport_socket_->GetSSLInfo(ssl_info); |
| 345 } | 345 } |
| 346 | 346 |
| 347 void FakeSSLClientSocket::GetConnectionAttempts( |
| 348 net::ConnectionAttempts* out) const { |
| 349 out->clear(); |
| 350 } |
| 351 |
| 347 } // namespace jingle_glue | 352 } // namespace jingle_glue |
| OLD | NEW |