| Index: net/socket/sequenced_socket_data_unittest.cc
|
| diff --git a/net/socket/sequenced_socket_data_unittest.cc b/net/socket/sequenced_socket_data_unittest.cc
|
| index c27fd615fd41b11bc48c0a87f809e3e1d4ed46e0..6a732e98f43038e4757bdaa2e61e79d7cbd68d8f 100644
|
| --- a/net/socket/sequenced_socket_data_unittest.cc
|
| +++ b/net/socket/sequenced_socket_data_unittest.cc
|
| @@ -2,11 +2,11 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include <memory>
|
| #include <string>
|
|
|
| #include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/run_loop.h"
|
| #include "net/base/io_buffer.h"
|
| #include "net/base/test_completion_callback.h"
|
| @@ -213,7 +213,7 @@ class SequencedSocketDataTest : public testing::Test {
|
|
|
| private:
|
| MockConnect connect_data_;
|
| - scoped_ptr<SequencedSocketData> data_;
|
| + std::unique_ptr<SequencedSocketData> data_;
|
|
|
| const HostPortPair endpoint_;
|
| scoped_refptr<TransportSocketParams> tcp_params_;
|
|
|