| Index: net/socket/ssl_client_socket.cc
|
| ===================================================================
|
| --- net/socket/ssl_client_socket.cc (revision 113490)
|
| +++ net/socket/ssl_client_socket.cc (working copy)
|
| @@ -10,7 +10,8 @@
|
|
|
| SSLClientSocket::SSLClientSocket()
|
| : was_npn_negotiated_(false),
|
| - was_spdy_negotiated_(false) {
|
| + was_spdy_negotiated_(false),
|
| + was_origin_bound_cert_sent_(false) {
|
| }
|
|
|
| SSLClientSocket::NextProto SSLClientSocket::NextProtoFromString(
|
| @@ -90,4 +91,12 @@
|
| 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
|
|
|