Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Side by Side Diff: net/socket/websocket_transport_client_socket_pool.cc

Issue 1969043002: Fix include path for moved thread_task_runner_handle.h header in net/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « net/socket/websocket_endpoint_lock_manager.cc ('k') | net/socket/websocket_transport_client_socket_pool_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698