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

Unified Diff: net/spdy/spdy_session_pool.h

Issue 2371943003: Remove |certificate_error_code| and SpdySession::TryAccessStream(). (Closed)
Patch Set: Created 4 years, 3 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/spdy/spdy_session_pool.h
diff --git a/net/spdy/spdy_session_pool.h b/net/spdy/spdy_session_pool.h
index 0d3354e28bf9e3113f2df4dd6849d39f119f4bc2..d0bcc25d4f81c8df7aa2b0e795e285babc1bd957 100644
--- a/net/spdy/spdy_session_pool.h
+++ b/net/spdy/spdy_session_pool.h
@@ -68,10 +68,7 @@ class NET_EXPORT SpdySessionPool
// not already be a session for the given key.
//
// |is_secure| can be false for testing or when SPDY is configured
- // to work with non-secure sockets. If |is_secure| is true,
- // |certificate_error_code| indicates that the certificate error
- // encountered when connecting the SSL socket, with OK meaning there
- // was no error.
+ // to work with non-secure sockets.
//
// Returns the new SpdySession. Note that the SpdySession begins reading from
// |connection| on a subsequent event loop iteration, so it may be closed
@@ -80,7 +77,6 @@ class NET_EXPORT SpdySessionPool
const SpdySessionKey& key,
std::unique_ptr<ClientSocketHandle> connection,
const NetLogWithSource& net_log,
- int certificate_error_code,
bool is_secure);
// Return an available session for |key| that has an unclaimed push stream for

Powered by Google App Engine
This is Rietveld 408576698