| OLD | NEW | 
|     1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |     1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 
|     2 // Use of this source code is governed by a BSD-style license that can be |     2 // Use of this source code is governed by a BSD-style license that can be | 
|     3 // found in the LICENSE file. |     3 // found in the LICENSE file. | 
|     4  |     4  | 
|     5 #include "net/socket/client_socket_pool_base.h" |     5 #include "net/socket/client_socket_pool_base.h" | 
|     6  |     6  | 
|     7 #include <math.h> |     7 #include <math.h> | 
|     8 #include "base/compiler_specific.h" |     8 #include "base/compiler_specific.h" | 
|     9 #include "base/format_macros.h" |     9 #include "base/format_macros.h" | 
|    10 #include "base/logging.h" |    10 #include "base/logging.h" | 
|    11 #include "base/message_loop.h" |    11 #include "base/message_loop.h" | 
|    12 #include "base/metrics/stats_counters.h" |    12 #include "base/metrics/stats_counters.h" | 
|    13 #include "base/stl_util-inl.h" |    13 #include "base/stl_util.h" | 
|    14 #include "base/string_number_conversions.h" |    14 #include "base/string_number_conversions.h" | 
|    15 #include "base/string_util.h" |    15 #include "base/string_util.h" | 
|    16 #include "base/time.h" |    16 #include "base/time.h" | 
|    17 #include "base/values.h" |    17 #include "base/values.h" | 
|    18 #include "net/base/net_log.h" |    18 #include "net/base/net_log.h" | 
|    19 #include "net/base/net_errors.h" |    19 #include "net/base/net_errors.h" | 
|    20 #include "net/socket/client_socket_handle.h" |    20 #include "net/socket/client_socket_handle.h" | 
|    21  |    21  | 
|    22 using base::TimeDelta; |    22 using base::TimeDelta; | 
|    23  |    23  | 
| (...skipping 1099 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  1123   // Delete active jobs. |  1123   // Delete active jobs. | 
|  1124   STLDeleteElements(&jobs_); |  1124   STLDeleteElements(&jobs_); | 
|  1125  |  1125  | 
|  1126   // Cancel pending backup job. |  1126   // Cancel pending backup job. | 
|  1127   method_factory_.RevokeAll(); |  1127   method_factory_.RevokeAll(); | 
|  1128 } |  1128 } | 
|  1129  |  1129  | 
|  1130 }  // namespace internal |  1130 }  // namespace internal | 
|  1131  |  1131  | 
|  1132 }  // namespace net |  1132 }  // namespace net | 
| OLD | NEW |