| Index: net/socket/client_socket_pool.h
|
| diff --git a/net/socket/client_socket_pool.h b/net/socket/client_socket_pool.h
|
| index b59f6049da89ea14a9cfcc95d97930792d83b14a..be21fb57e6cdde15862a441a87b5f116e0faec48 100644
|
| --- a/net/socket/client_socket_pool.h
|
| +++ b/net/socket/client_socket_pool.h
|
| @@ -123,6 +123,14 @@ class NET_EXPORT ClientSocketPool : public LowerLayeredPool {
|
| int num_sockets,
|
| const BoundNetLog& net_log) = 0;
|
|
|
| + // Called to change the priority of a RequestSocket call that returned
|
| + // ERR_IO_PENDING and has not yet asynchronously completed. The same handle
|
| + // parameter must be passed to this method as was passed to the
|
| + // RequestSocket call being modified.
|
| + virtual void SetPriority(const std::string& group_name,
|
| + ClientSocketHandle* handle,
|
| + RequestPriority priority) = 0;
|
| +
|
| // Called to cancel a RequestSocket call that returned ERR_IO_PENDING. The
|
| // same handle parameter must be passed to this method as was passed to the
|
| // RequestSocket call being cancelled. The associated CompletionCallback is
|
|
|