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

Unified Diff: remoting/host/continue_window_chromeos.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/config_file_watcher_unittest.cc ('k') | remoting/host/continue_window_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/continue_window_chromeos.cc
diff --git a/remoting/host/continue_window_chromeos.cc b/remoting/host/continue_window_chromeos.cc
index 17c8895631d892f44255521271968871d839e3d0..5143046cc7e336e8174ab13ddfb595e23f72b570 100644
--- a/remoting/host/continue_window_chromeos.cc
+++ b/remoting/host/continue_window_chromeos.cc
@@ -5,6 +5,7 @@
#include "remoting/host/continue_window.h"
#include "base/macros.h"
+#include "base/memory/ptr_util.h"
#include "remoting/base/string_resources.h"
#include "remoting/host/chromeos/message_box.h"
#include "ui/base/l10n/l10n_util.h"
@@ -26,7 +27,7 @@ class ContinueWindowAura : public ContinueWindow {
void HideUi() override;
private:
- scoped_ptr<MessageBox> message_box_;
+ std::unique_ptr<MessageBox> message_box_;
DISALLOW_COPY_AND_ASSIGN(ContinueWindowAura);
};
@@ -63,8 +64,8 @@ void ContinueWindowAura::HideUi() {
} // namespace
// static
-scoped_ptr<HostWindow> HostWindow::CreateContinueWindow() {
- return make_scoped_ptr(new ContinueWindowAura());
+std::unique_ptr<HostWindow> HostWindow::CreateContinueWindow() {
+ return base::WrapUnique(new ContinueWindowAura());
}
} // namespace remoting
« no previous file with comments | « remoting/host/config_file_watcher_unittest.cc ('k') | remoting/host/continue_window_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698