| Index: remoting/protocol/fake_session.cc
|
| diff --git a/remoting/protocol/fake_session.cc b/remoting/protocol/fake_session.cc
|
| index a6a3aca4f738742df398ee69c05a80fd1dd26f0a..a04995fe2fa0801dbb9a6930e5e26596d90fe132 100644
|
| --- a/remoting/protocol/fake_session.cc
|
| +++ b/remoting/protocol/fake_session.cc
|
| @@ -157,11 +157,19 @@ base::TimeDelta FakeSocket::GetConnectTimeMicros() const {
|
| return base::TimeDelta();
|
| }
|
|
|
| +bool FakeSocket::WasNpnNegotiated() const {
|
| + return false;
|
| +}
|
| +
|
| net::NextProto FakeSocket::GetNegotiatedProtocol() const {
|
| NOTIMPLEMENTED();
|
| return net::kProtoUnknown;
|
| }
|
|
|
| +bool FakeSocket::GetSSLInfo(net::SSLInfo* ssl_info) {
|
| + return false;
|
| +}
|
| +
|
| FakeUdpSocket::FakeUdpSocket()
|
| : read_pending_(false),
|
| input_pos_(0),
|
|
|