Chromium Code Reviews| Index: net/socket/ssl_client_socket.cc |
| diff --git a/net/socket/ssl_client_socket.cc b/net/socket/ssl_client_socket.cc |
| index d48233aac004ee4af4c973924f99680c10b2467c..a486a23945b6903710ae812ee0d98dd910b1a4c5 100644 |
| --- a/net/socket/ssl_client_socket.cc |
| +++ b/net/socket/ssl_client_socket.cc |
| @@ -135,4 +135,8 @@ SSLClientCertType SSLClientSocket::set_domain_bound_cert_type( |
| return domain_bound_cert_type_ = type; |
| } |
| +NextProto SSLClientSocket::GetNegotiatedProtocol() const { |
| + return static_cast<NextProto>(protocol_negotiated()); |
|
wtc
2012/03/30 21:19:14
Remove static_cast because protocol_negotiated() r
Ryan Hamilton
2012/03/30 21:53:17
Done.
|
| +} |
| + |
| } // namespace net |