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

Unified Diff: net/spdy/spdy_proxy_client_socket.cc

Issue 9959033: Move NextProto enum to a new file net/socket/next_proto.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address wtc's comments Created 8 years, 9 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
« no previous file with comments | « net/spdy/spdy_proxy_client_socket.h ('k') | net/spdy/spdy_proxy_client_socket_spdy2_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_proxy_client_socket.cc
diff --git a/net/spdy/spdy_proxy_client_socket.cc b/net/spdy/spdy_proxy_client_socket.cc
index e5026db5ccfc6ceb1fd884c2285c255b7b1a200e..182be87d58cfdab1fb2a5837f38e640b51e710e1 100644
--- a/net/spdy/spdy_proxy_client_socket.cc
+++ b/net/spdy/spdy_proxy_client_socket.cc
@@ -77,12 +77,11 @@ bool SpdyProxyClientSocket::IsUsingSpdy() const {
return true;
}
-SSLClientSocket::NextProto
-SpdyProxyClientSocket::GetProtocolNegotiated() const {
+NextProto SpdyProxyClientSocket::GetProtocolNegotiated() const {
// Save the negotiated protocol
SSLInfo ssl_info;
bool was_npn_negotiated;
- SSLClientSocket::NextProto protocol_negotiated;
+ NextProto protocol_negotiated;
spdy_stream_->GetSSLInfo(&ssl_info, &was_npn_negotiated,
&protocol_negotiated);
return protocol_negotiated;
« no previous file with comments | « net/spdy/spdy_proxy_client_socket.h ('k') | net/spdy/spdy_proxy_client_socket_spdy2_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698