| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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/notifier/base/fake_ssl_client_socket.h" | 5 #include "jingle/notifier/base/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 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 } | 321 } |
| 322 | 322 |
| 323 void FakeSSLClientSocket::SetOmniboxSpeculation() { | 323 void FakeSSLClientSocket::SetOmniboxSpeculation() { |
| 324 transport_socket_->SetOmniboxSpeculation(); | 324 transport_socket_->SetOmniboxSpeculation(); |
| 325 } | 325 } |
| 326 | 326 |
| 327 bool FakeSSLClientSocket::WasEverUsed() const { | 327 bool FakeSSLClientSocket::WasEverUsed() const { |
| 328 return transport_socket_->WasEverUsed(); | 328 return transport_socket_->WasEverUsed(); |
| 329 } | 329 } |
| 330 | 330 |
| 331 bool FakeSSLClientSocket::UsingTCPFastOpen() const { |
| 332 return transport_socket_->UsingTCPFastOpen(); |
| 333 } |
| 334 |
| 331 } // namespace notifier | 335 } // namespace notifier |
| OLD | NEW |