summaryrefslogtreecommitdiffstats
path: root/net/socket/ssl_client_socket.h
diff options
context:
space:
mode:
authorrch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-07 18:27:28 +0000
committerrch@chromium.org <rch@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-12-07 18:27:28 +0000
commit16cfe7ec0529962920406706b9dd72290e3866f1 (patch)
treee88ac90073feb4503a6b9250b8c43f35d4a60462 /net/socket/ssl_client_socket.h
parenta7d0da5b5c32cc3610e044bfd1789a6178465673 (diff)
downloadchromium_src-16cfe7ec0529962920406706b9dd72290e3866f1.zip
chromium_src-16cfe7ec0529962920406706b9dd72290e3866f1.tar.gz
chromium_src-16cfe7ec0529962920406706b9dd72290e3866f1.tar.bz2
Revert 113409 - Add a new method to SSLClientSocket:
was_origin_cert_sent() This will help SpdySession decide to send a CREDENTIAL frame. BUG=106103 TEST=none Review URL: http://codereview.chromium.org/8817021 TBR=rch@chromium.org Review URL: http://codereview.chromium.org/8850003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@113419 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/socket/ssl_client_socket.h')
-rw-r--r--net/socket/ssl_client_socket.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/net/socket/ssl_client_socket.h b/net/socket/ssl_client_socket.h
index c847e9f..858f3fb 100644
--- a/net/socket/ssl_client_socket.h
+++ b/net/socket/ssl_client_socket.h
@@ -126,21 +126,11 @@ class NET_EXPORT SSLClientSocket : public SSLSocket {
virtual bool set_was_spdy_negotiated(bool negotiated);
- // Returns true if an origin bound certificate was sent on this connection.
- // This may be useful for protocols, like SPDY, which allow the same
- // connection to be shared between multiple origins, each of which need
- // an origin bound certificate.
- virtual bool was_origin_bound_cert_sent() const;
-
- virtual bool set_was_origin_bound_cert_sent(bool sent);
-
private:
// True if NPN was responded to, independent of selecting SPDY or HTTP.
bool was_npn_negotiated_;
// True if NPN successfully negotiated SPDY.
bool was_spdy_negotiated_;
- // True if an origin bound certificate was sent.
- bool was_origin_bound_cert_sent_;
};
} // namespace net