Index: net/socket/client_socket_pool.cc |
diff --git a/net/socket/client_socket_pool.cc b/net/socket/client_socket_pool.cc |
deleted file mode 100644 |
index 261e87fc7fe8c1fa089faad7c7b2118e61094f95..0000000000000000000000000000000000000000 |
--- a/net/socket/client_socket_pool.cc |
+++ /dev/null |
@@ -1,50 +0,0 @@ |
-// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-#include "net/socket/client_socket_pool.h" |
- |
-#include "base/logging.h" |
- |
-namespace { |
- |
-// The maximum duration, in seconds, to keep unused idle persistent sockets |
-// alive. |
-// TODO(ziadh): Change this timeout after getting histogram data on how long it |
-// should be. |
-int64 g_unused_idle_socket_timeout_s = 10; |
- |
-// The maximum duration, in seconds, to keep used idle persistent sockets alive. |
-int64 g_used_idle_socket_timeout_s = 300; // 5 minutes |
- |
-} // namespace |
- |
-namespace net { |
- |
-// static |
-base::TimeDelta ClientSocketPool::unused_idle_socket_timeout() { |
- return base::TimeDelta::FromSeconds(g_unused_idle_socket_timeout_s); |
-} |
- |
-// static |
-void ClientSocketPool::set_unused_idle_socket_timeout(base::TimeDelta timeout) { |
- DCHECK_GT(timeout.InSeconds(), 0); |
- g_unused_idle_socket_timeout_s = timeout.InSeconds(); |
-} |
- |
-// static |
-base::TimeDelta ClientSocketPool::used_idle_socket_timeout() { |
- return base::TimeDelta::FromSeconds(g_used_idle_socket_timeout_s); |
-} |
- |
-// static |
-void ClientSocketPool::set_used_idle_socket_timeout(base::TimeDelta timeout) { |
- DCHECK_GT(timeout.InSeconds(), 0); |
- g_used_idle_socket_timeout_s = timeout.InSeconds(); |
-} |
- |
-ClientSocketPool::ClientSocketPool() {} |
- |
-ClientSocketPool::~ClientSocketPool() {} |
- |
-} // namespace net |