| Index: net/socket/ssl_client_socket.cc
|
| ===================================================================
|
| --- net/socket/ssl_client_socket.cc (revision 113418)
|
| +++ net/socket/ssl_client_socket.cc (working copy)
|
| @@ -10,8 +10,7 @@
|
|
|
| SSLClientSocket::SSLClientSocket()
|
| : was_npn_negotiated_(false),
|
| - was_spdy_negotiated_(false),
|
| - was_origin_bound_cert_sent_(false) {
|
| + was_spdy_negotiated_(false) {
|
| }
|
|
|
| SSLClientSocket::NextProto SSLClientSocket::NextProtoFromString(
|
| @@ -91,12 +90,4 @@
|
| return was_spdy_negotiated_ = negotiated;
|
| }
|
|
|
| -bool SSLClientSocket::was_origin_bound_cert_sent() const {
|
| - return was_origin_bound_cert_sent_;
|
| -}
|
| -
|
| -bool SSLClientSocket::set_was_origin_bound_cert_sent(bool sent) {
|
| - return was_origin_bound_cert_sent_ = sent;
|
| -}
|
| -
|
| } // namespace net
|
|
|