Index: net/socket/client_socket_pool_base.h |
diff --git a/net/socket/client_socket_pool_base.h b/net/socket/client_socket_pool_base.h |
index a1fd9eabf859856599562d1f77986fbba3df417f..1798997c3512f3fbd155f216afef9de63dab6a68 100644 |
--- a/net/socket/client_socket_pool_base.h |
+++ b/net/socket/client_socket_pool_base.h |
@@ -298,8 +298,6 @@ class ClientSocketPoolBaseHelper |
// Entry for a persistent socket which became idle at time |start_time|. |
struct IdleSocket { |
IdleSocket() : socket(NULL) {} |
- ClientSocket* socket; |
- base::TimeTicks start_time; |
// An idle socket should be removed if it can't be reused, or has been idle |
// for too long. |now| is the current time value (TimeTicks::Now()). |
@@ -310,6 +308,9 @@ class ClientSocketPoolBaseHelper |
// mistaken for the beginning of the next response if we were to reuse the |
// socket for a new request. |
bool ShouldCleanup(base::TimeTicks now, base::TimeDelta timeout) const; |
+ |
+ ClientSocket* socket; |
+ base::TimeTicks start_time; |
}; |
typedef std::deque<const Request* > RequestQueue; |