| Index: net/socket/client_socket_pool_base_unittest.cc
|
| diff --git a/net/socket/client_socket_pool_base_unittest.cc b/net/socket/client_socket_pool_base_unittest.cc
|
| index 05fab62887c820432eb769f4694ab269268543e1..a467f49e6013cec34ab9781c034cd6884ac83d3b 100644
|
| --- a/net/socket/client_socket_pool_base_unittest.cc
|
| +++ b/net/socket/client_socket_pool_base_unittest.cc
|
| @@ -5,7 +5,7 @@
|
| #include "net/socket/client_socket_pool_base.h"
|
|
|
| #include <stdint.h>
|
| -
|
| +#include <utility>
|
| #include <vector>
|
|
|
| #include "base/bind.h"
|
| @@ -532,7 +532,7 @@ class TestClientSocketPool : public ClientSocketPool {
|
| void ReleaseSocket(const std::string& group_name,
|
| scoped_ptr<StreamSocket> socket,
|
| int id) override {
|
| - base_.ReleaseSocket(group_name, socket.Pass(), id);
|
| + base_.ReleaseSocket(group_name, std::move(socket), id);
|
| }
|
|
|
| void FlushWithError(int error) override { base_.FlushWithError(error); }
|
|
|