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

Unified Diff: remoting/host/win/worker_process_launcher_unittest.cc

Issue 1864213002: Convert //remoting to use std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Mac IWYU 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 | « remoting/host/win/worker_process_launcher.cc ('k') | remoting/host/win/wts_session_process_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/win/worker_process_launcher_unittest.cc
diff --git a/remoting/host/win/worker_process_launcher_unittest.cc b/remoting/host/win/worker_process_launcher_unittest.cc
index ba27372e95d167688c8a9a63f4aefe9230e43b05..a71318f37f663b09b7992cb14020e4c4d9896a02 100644
--- a/remoting/host/win/worker_process_launcher_unittest.cc
+++ b/remoting/host/win/worker_process_launcher_unittest.cc
@@ -167,19 +167,19 @@ class WorkerProcessLauncherTest
MockIpcDelegate server_listener_;
// Implements WorkerProcessLauncher::Delegate.
- scoped_ptr<MockProcessLauncherDelegate> launcher_delegate_;
+ std::unique_ptr<MockProcessLauncherDelegate> launcher_delegate_;
// The name of the IPC channel.
std::string channel_name_;
// Client and server ends of the IPC channel.
- scoped_ptr<IPC::ChannelProxy> channel_client_;
- scoped_ptr<IPC::ChannelProxy> channel_server_;
+ std::unique_ptr<IPC::ChannelProxy> channel_client_;
+ std::unique_ptr<IPC::ChannelProxy> channel_server_;
WorkerProcessLauncher* event_handler_;
// The worker process launcher.
- scoped_ptr<WorkerProcessLauncher> launcher_;
+ std::unique_ptr<WorkerProcessLauncher> launcher_;
// An event that is used to emulate the worker process's handle.
ScopedHandle worker_process_;
« no previous file with comments | « remoting/host/win/worker_process_launcher.cc ('k') | remoting/host/win/wts_session_process_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698