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

Unified Diff: remoting/host/continue_window_android.cc

Issue 2253233004: Re-write many calls to WrapUnique() with MakeUnique() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 4 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/client_session.cc ('k') | remoting/host/continue_window_chromeos.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/continue_window_android.cc
diff --git a/remoting/host/continue_window_android.cc b/remoting/host/continue_window_android.cc
index 03544e42f9080f487f3a84ecf4a324df282ddb03..68175cd658556bf87a69ef18ccdc890b542ca2ca 100644
--- a/remoting/host/continue_window_android.cc
+++ b/remoting/host/continue_window_android.cc
@@ -32,7 +32,7 @@ class ContinueWindowAndroid : public ContinueWindow {
// static
std::unique_ptr<HostWindow> HostWindow::CreateContinueWindow() {
- return base::WrapUnique(new ContinueWindowAndroid());
+ return base::MakeUnique<ContinueWindowAndroid>();
}
} // namespace remoting
« no previous file with comments | « remoting/host/client_session.cc ('k') | remoting/host/continue_window_chromeos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698