OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 #ifndef NET_SOCKET_CLIENT_SOCKET_POOL_H_ | 5 #ifndef NET_SOCKET_CLIENT_SOCKET_POOL_H_ |
6 #define NET_SOCKET_CLIENT_SOCKET_POOL_H_ | 6 #define NET_SOCKET_CLIENT_SOCKET_POOL_H_ |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <map> | 9 #include <map> |
10 #include <string> | 10 #include <string> |
(...skipping 28 matching lines...) Expand all Loading... |
39 // ClientSocket was reused, then ClientSocketPool will call | 39 // ClientSocket was reused, then ClientSocketPool will call |
40 // |handle|->set_reused(true). In either case, the socket will have been | 40 // |handle|->set_reused(true). In either case, the socket will have been |
41 // allocated and will be connected. A client might want to know whether or | 41 // allocated and will be connected. A client might want to know whether or |
42 // not the socket is reused in order to know whether or not he needs to | 42 // not the socket is reused in order to know whether or not he needs to |
43 // perform SSL connection or tunnel setup or to request a new socket if he | 43 // perform SSL connection or tunnel setup or to request a new socket if he |
44 // encounters an error with the reused socket. | 44 // encounters an error with the reused socket. |
45 // | 45 // |
46 // If ERR_IO_PENDING is returned, then the callback will be used to notify the | 46 // If ERR_IO_PENDING is returned, then the callback will be used to notify the |
47 // client of completion. | 47 // client of completion. |
48 // | 48 // |
49 virtual int RequestSocket(const std::string& group_name, | 49 // Profiling information for the request is saved to |load_log| if non-NULL. |
| 50 virtual int RequestSocket(LoadLog* load_log, |
| 51 const std::string& group_name, |
50 const HostResolver::RequestInfo& resolve_info, | 52 const HostResolver::RequestInfo& resolve_info, |
51 int priority, | 53 int priority, |
52 ClientSocketHandle* handle, | 54 ClientSocketHandle* handle, |
53 CompletionCallback* callback) = 0; | 55 CompletionCallback* callback) = 0; |
54 | 56 |
55 // Called to cancel a RequestSocket call that returned ERR_IO_PENDING. The | 57 // Called to cancel a RequestSocket call that returned ERR_IO_PENDING. The |
56 // same handle parameter must be passed to this method as was passed to the | 58 // same handle parameter must be passed to this method as was passed to the |
57 // RequestSocket call being cancelled. The associated CompletionCallback is | 59 // RequestSocket call being cancelled. The associated CompletionCallback is |
58 // not run. | 60 // not run. |
59 virtual void CancelRequest(const std::string& group_name, | 61 virtual void CancelRequest(const std::string& group_name, |
(...skipping 25 matching lines...) Expand all Loading... |
85 | 87 |
86 private: | 88 private: |
87 friend class base::RefCounted<ClientSocketPool>; | 89 friend class base::RefCounted<ClientSocketPool>; |
88 | 90 |
89 DISALLOW_COPY_AND_ASSIGN(ClientSocketPool); | 91 DISALLOW_COPY_AND_ASSIGN(ClientSocketPool); |
90 }; | 92 }; |
91 | 93 |
92 } // namespace net | 94 } // namespace net |
93 | 95 |
94 #endif // NET_SOCKET_CLIENT_SOCKET_POOL_H_ | 96 #endif // NET_SOCKET_CLIENT_SOCKET_POOL_H_ |
OLD | NEW |