Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1330)

Unified Diff: content/test/render_thread_impl_browser_test_ipc_helper.h

Issue 1874903002: Convert //content from scoped_ptr to std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix indent Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/test/ppapi_unittest.h ('k') | content/test/run_all_unittests.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/render_thread_impl_browser_test_ipc_helper.h
diff --git a/content/test/render_thread_impl_browser_test_ipc_helper.h b/content/test/render_thread_impl_browser_test_ipc_helper.h
index b0816515191209e5174eef82ecb2293e8ec8816b..8420d6a54863feff0b9127815958b1743908b029 100644
--- a/content/test/render_thread_impl_browser_test_ipc_helper.h
+++ b/content/test/render_thread_impl_browser_test_ipc_helper.h
@@ -44,12 +44,12 @@ class RenderThreadImplBrowserIPCTestHelper {
void SetupIpcThread();
void SetupMojo();
- scoped_ptr<IPC::ChannelProxy> channel_;
- scoped_ptr<base::Thread> ipc_thread_;
- scoped_ptr<base::MessageLoopForIO> message_loop_;
- scoped_ptr<DummyListener> dummy_listener_;
- scoped_ptr<IPC::ScopedIPCSupport> ipc_support_;
- scoped_ptr<MojoApplicationHost> mojo_application_host_;
+ std::unique_ptr<IPC::ChannelProxy> channel_;
+ std::unique_ptr<base::Thread> ipc_thread_;
+ std::unique_ptr<base::MessageLoopForIO> message_loop_;
+ std::unique_ptr<DummyListener> dummy_listener_;
+ std::unique_ptr<IPC::ScopedIPCSupport> ipc_support_;
+ std::unique_ptr<MojoApplicationHost> mojo_application_host_;
mojo::ScopedMessagePipeHandle message_pipe_handle_;
std::string channel_id_;
};
« no previous file with comments | « content/test/ppapi_unittest.h ('k') | content/test/run_all_unittests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698