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

Unified Diff: net/spdy/spdy_session_pool.h

Issue 11464028: Introduce ERR_NETWORK_CHANGED and allow URLFetcher to automatically retry on that error. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased, post first try if online, more tests Created 8 years 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 b77f28bc40787c5e3ad8706f9f96932ab1360e4b..0467583eefa0f8ea73936c0adbadc51d79ad58b9 100644
--- a/net/spdy/spdy_session_pool.h
+++ b/net/spdy/spdy_session_pool.h
@@ -104,9 +104,9 @@ class NET_EXPORT SpdySessionPool
// Close all SpdySessions, including any new ones created in the process of
// closing the current ones.
void CloseAllSessions();
- // Close only the currently existing SpdySessions. Let any new ones created
- // continue to live.
- void CloseCurrentSessions();
+ // Close only the currently existing SpdySessions with |error|.
+ // Let any new ones created continue to live.
+ void CloseCurrentSessions(net::Error error);
// Close only the idle SpdySessions.
void CloseIdleSessions();

Powered by Google App Engine
This is Rietveld 408576698