| Index: net/socket/client_socket_handle.cc
|
| diff --git a/net/socket/client_socket_handle.cc b/net/socket/client_socket_handle.cc
|
| index be58c7296d62c1b763888f0392edb43174f1a931..7c7132405e6bf2e07a027fb28223f04321078a25 100644
|
| --- a/net/socket/client_socket_handle.cc
|
| +++ b/net/socket/client_socket_handle.cc
|
| @@ -31,6 +31,20 @@ ClientSocketHandle::~ClientSocketHandle() {
|
| Reset();
|
| }
|
|
|
| +void ClientSocketHandle::SetPriority(RequestPriority priority) {
|
| + if (socket_) {
|
| + // The priority of the handle is no longer relevant to the socket pool;
|
| + // just return.
|
| + //
|
| + // TODO (rdsmith): Incorporate change in priority information into TCP
|
| + // params on this socket.
|
| + return;
|
| + }
|
| +
|
| + if (pool_)
|
| + pool_->SetPriority(group_name_, this, priority);
|
| +}
|
| +
|
| void ClientSocketHandle::Reset() {
|
| ResetInternal(true);
|
| ResetErrorState();
|
|
|