Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2353)

Unified Diff: net/socket/ssl_client_socket.h

Issue 1103173004: Remove WasChannelIDSent and friends from SSLClientSocket. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@virtuals-wat-1
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/socket/ssl_client_socket.h
diff --git a/net/socket/ssl_client_socket.h b/net/socket/ssl_client_socket.h
index 6ee2ece9bc51b148c13af7ee2dc57e4a409c74ee..9b768daa872b1ce783d0239ac5fa045add97ed7e 100644
--- a/net/socket/ssl_client_socket.h
+++ b/net/socket/ssl_client_socket.h
@@ -131,17 +131,7 @@ class NET_EXPORT SSLClientSocket : public SSLSocket {
// channel ids are not supported.
virtual ChannelIDService* GetChannelIDService() const = 0;
- // Returns true if a channel ID was sent on this connection.
- // This may be useful for protocols, like SPDY, which allow the same
- // connection to be shared between multiple domains, each of which need
- // a channel ID.
- //
- // Public for ssl_client_socket_openssl_unittest.cc.
- virtual bool WasChannelIDSent() const;
-
protected:
- virtual void set_channel_id_sent(bool channel_id_sent);
-
virtual void set_signed_cert_timestamps_received(
bool signed_cert_timestamps_received);
@@ -204,8 +194,6 @@ class NET_EXPORT SSLClientSocket : public SSLSocket {
// Protocol that we negotiated with the server.
NextProto protocol_negotiated_;
- // True if a channel ID was sent.
- bool channel_id_sent_;
// True if SCTs were received via a TLS extension.
bool signed_cert_timestamps_received_;
// True if a stapled OCSP response was received.

Powered by Google App Engine
This is Rietveld 408576698