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

Unified Diff: net/socket/tcp_client_socket_libevent.cc

Issue 10690122: Change SpdySession::GetSSLInfo to get the SSLInfo from the underlying socket (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Actual working test Created 8 years, 5 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/tcp_client_socket_libevent.cc
diff --git a/net/socket/tcp_client_socket_libevent.cc b/net/socket/tcp_client_socket_libevent.cc
index d139a5478d60a0e99ddcd72553701f4ba97e1647..d92cd1467d74d04980bb9188c88a1b5904a8a7da 100644
--- a/net/socket/tcp_client_socket_libevent.cc
+++ b/net/socket/tcp_client_socket_libevent.cc
@@ -758,8 +758,16 @@ base::TimeDelta TCPClientSocketLibevent::GetConnectTimeMicros() const {
return connect_time_micros_;
}
+bool TCPClientSocketLibevent::WasNpnNegotiated() const {
+ return false;
+}
+
NextProto TCPClientSocketLibevent::GetNegotiatedProtocol() const {
return kProtoUnknown;
}
+bool TCPClientSocketLibevent::GetSSLInfo(SSLInfo* ssl_info) const {
+ return false;
+}
+
} // namespace net

Powered by Google App Engine
This is Rietveld 408576698