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

Unified Diff: net/socket/client_socket_handle.h

Issue 18796003: When an idle socket is added back to a socket pool, check for stalled jobs in lower pools (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Response to comments Created 7 years, 4 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/client_socket_handle.h
===================================================================
--- net/socket/client_socket_handle.h (revision 218769)
+++ net/socket/client_socket_handle.h (working copy)
@@ -94,9 +94,9 @@
bool IsPoolStalled() const;
- void AddLayeredPool(LayeredPool* layered_pool);
+ void AddHigherLayeredPool(HigherLayeredPool* higher_pool);
- void RemoveLayeredPool(LayeredPool* layered_pool);
+ void RemoveHigherLayeredPool(HigherLayeredPool* higher_pool);
// Returns true when Init() has completed successfully.
bool is_initialized() const { return is_initialized_; }
@@ -184,7 +184,7 @@
bool is_initialized_;
ClientSocketPool* pool_;
- LayeredPool* layered_pool_;
+ HigherLayeredPool* higher_pool_;
scoped_ptr<StreamSocket> socket_;
std::string group_name_;
bool is_reused_;

Powered by Google App Engine
This is Rietveld 408576698