Index: url/run_all_unittests.cc |
diff --git a/url/run_all_unittests.cc b/url/run_all_unittests.cc |
index 82f58a7df0886609223472ff247fbebd14a38f49..088c5c0a5b20c5d04af629c50b44ddfda87c3bc3 100644 |
--- a/url/run_all_unittests.cc |
+++ b/url/run_all_unittests.cc |
@@ -2,6 +2,8 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
+#include <memory> |
+ |
#include "base/bind.h" |
#include "base/message_loop/message_loop.h" |
#include "base/test/launcher/unit_test_launcher.h" |
@@ -29,7 +31,7 @@ int main(int argc, char** argv) { |
#if !defined(OS_IOS) |
mojo::edk::Init(); |
base::TestIOThread test_io_thread(base::TestIOThread::kAutoStart); |
- scoped_ptr<mojo::edk::test::ScopedIPCSupport> ipc_support; |
+ std::unique_ptr<mojo::edk::test::ScopedIPCSupport> ipc_support; |
ipc_support.reset( |
new mojo::edk::test::ScopedIPCSupport(test_io_thread.task_runner())); |
#endif |