| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/websocket_transport_client_socket_pool.h" | 5 #include "net/socket/websocket_transport_client_socket_pool.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <utility> | 8 #include <utility> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/location.h" | 11 #include "base/location.h" |
| 12 #include "base/logging.h" | 12 #include "base/logging.h" |
| 13 #include "base/numerics/safe_conversions.h" | 13 #include "base/numerics/safe_conversions.h" |
| 14 #include "base/single_thread_task_runner.h" | 14 #include "base/single_thread_task_runner.h" |
| 15 #include "base/strings/string_util.h" | 15 #include "base/strings/string_util.h" |
| 16 #include "base/thread_task_runner_handle.h" | 16 #include "base/threading/thread_task_runner_handle.h" |
| 17 #include "base/time/time.h" | 17 #include "base/time/time.h" |
| 18 #include "base/values.h" | 18 #include "base/values.h" |
| 19 #include "net/base/net_errors.h" | 19 #include "net/base/net_errors.h" |
| 20 #include "net/log/net_log.h" | 20 #include "net/log/net_log.h" |
| 21 #include "net/socket/client_socket_handle.h" | 21 #include "net/socket/client_socket_handle.h" |
| 22 #include "net/socket/client_socket_pool_base.h" | 22 #include "net/socket/client_socket_pool_base.h" |
| 23 #include "net/socket/websocket_endpoint_lock_manager.h" | 23 #include "net/socket/websocket_endpoint_lock_manager.h" |
| 24 #include "net/socket/websocket_transport_connect_sub_job.h" | 24 #include "net/socket/websocket_transport_connect_sub_job.h" |
| 25 | 25 |
| 26 namespace net { | 26 namespace net { |
| (...skipping 607 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 634 handle(handle), | 634 handle(handle), |
| 635 callback(callback), | 635 callback(callback), |
| 636 net_log(net_log) {} | 636 net_log(net_log) {} |
| 637 | 637 |
| 638 WebSocketTransportClientSocketPool::StalledRequest::StalledRequest( | 638 WebSocketTransportClientSocketPool::StalledRequest::StalledRequest( |
| 639 const StalledRequest& other) = default; | 639 const StalledRequest& other) = default; |
| 640 | 640 |
| 641 WebSocketTransportClientSocketPool::StalledRequest::~StalledRequest() {} | 641 WebSocketTransportClientSocketPool::StalledRequest::~StalledRequest() {} |
| 642 | 642 |
| 643 } // namespace net | 643 } // namespace net |
| OLD | NEW |