| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/transport_client_socket_pool.h" | 5 #include "net/socket/transport_client_socket_pool.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 | 8 |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| (...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 451 } | 451 } |
| 452 | 452 |
| 453 void TransportClientSocketPool::AddLayeredPool(LayeredPool* layered_pool) { | 453 void TransportClientSocketPool::AddLayeredPool(LayeredPool* layered_pool) { |
| 454 base_.AddLayeredPool(layered_pool); | 454 base_.AddLayeredPool(layered_pool); |
| 455 } | 455 } |
| 456 | 456 |
| 457 void TransportClientSocketPool::RemoveLayeredPool(LayeredPool* layered_pool) { | 457 void TransportClientSocketPool::RemoveLayeredPool(LayeredPool* layered_pool) { |
| 458 base_.RemoveLayeredPool(layered_pool); | 458 base_.RemoveLayeredPool(layered_pool); |
| 459 } | 459 } |
| 460 | 460 |
| 461 DictionaryValue* TransportClientSocketPool::GetInfoAsValue( | 461 base::DictionaryValue* TransportClientSocketPool::GetInfoAsValue( |
| 462 const std::string& name, | 462 const std::string& name, |
| 463 const std::string& type, | 463 const std::string& type, |
| 464 bool include_nested_pools) const { | 464 bool include_nested_pools) const { |
| 465 return base_.GetInfoAsValue(name, type); | 465 return base_.GetInfoAsValue(name, type); |
| 466 } | 466 } |
| 467 | 467 |
| 468 base::TimeDelta TransportClientSocketPool::ConnectionTimeout() const { | 468 base::TimeDelta TransportClientSocketPool::ConnectionTimeout() const { |
| 469 return base_.ConnectionTimeout(); | 469 return base_.ConnectionTimeout(); |
| 470 } | 470 } |
| 471 | 471 |
| 472 ClientSocketPoolHistograms* TransportClientSocketPool::histograms() const { | 472 ClientSocketPoolHistograms* TransportClientSocketPool::histograms() const { |
| 473 return base_.histograms(); | 473 return base_.histograms(); |
| 474 } | 474 } |
| 475 | 475 |
| 476 } // namespace net | 476 } // namespace net |
| OLD | NEW |