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

Unified Diff: remoting/host/win/rdp_client_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/rdp_client.cc ('k') | remoting/host/win/rdp_desktop_session.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/win/rdp_client_unittest.cc
diff --git a/remoting/host/win/rdp_client_unittest.cc b/remoting/host/win/rdp_client_unittest.cc
index d9f44d1eebb070ebfc591cc7eb710d23f0bad626..01524be3729e5d4226dbe71bfe987d745700bf43 100644
--- a/remoting/host/win/rdp_client_unittest.cc
+++ b/remoting/host/win/rdp_client_unittest.cc
@@ -93,7 +93,7 @@ class RdpClientTest : public testing::Test {
protected:
// The ATL module instance required by the ATL code.
- scoped_ptr<RdpClientModule> module_;
+ std::unique_ptr<RdpClientModule> module_;
// The UI message loop used by RdpClient. The loop is stopped once there is no
// more references to |task_runner_|.
@@ -105,7 +105,7 @@ class RdpClientTest : public testing::Test {
MockRdpClientEventHandler event_handler_;
// Points to the object being tested.
- scoped_ptr<RdpClient> rdp_client_;
+ std::unique_ptr<RdpClient> rdp_client_;
// Unique terminal identifier passed to RdpClient.
std::string terminal_id_;
« no previous file with comments | « remoting/host/win/rdp_client.cc ('k') | remoting/host/win/rdp_desktop_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698