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

Unified Diff: remoting/host/it2me/it2me_confirmation_dialog.h

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/ipc_video_frame_capturer.cc ('k') | remoting/host/it2me/it2me_confirmation_dialog.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/it2me/it2me_confirmation_dialog.h
diff --git a/remoting/host/it2me/it2me_confirmation_dialog.h b/remoting/host/it2me/it2me_confirmation_dialog.h
index c6b251c68adfce884ece76e17bf5646761c9a9f1..2e51ae7fc074c7b3fc2ab667ad75d3a3953c475e 100644
--- a/remoting/host/it2me/it2me_confirmation_dialog.h
+++ b/remoting/host/it2me/it2me_confirmation_dialog.h
@@ -5,10 +5,11 @@
#ifndef REMOTING_HOST_IT2ME_IT2ME_CONFIRMATION_DIALOG_H_
#define REMOTING_HOST_IT2ME_IT2ME_CONFIRMATION_DIALOG_H_
+#include <memory>
+
#include "base/callback_forward.h"
#include "base/macros.h"
#include "base/memory/ref_counted.h"
-#include "base/memory/scoped_ptr.h"
#include "base/single_thread_task_runner.h"
namespace remoting {
@@ -38,7 +39,7 @@ class It2MeConfirmationDialogFactory {
It2MeConfirmationDialogFactory();
virtual ~It2MeConfirmationDialogFactory();
- virtual scoped_ptr<It2MeConfirmationDialog> Create();
+ virtual std::unique_ptr<It2MeConfirmationDialog> Create();
DISALLOW_COPY_AND_ASSIGN(It2MeConfirmationDialogFactory);
};
« no previous file with comments | « remoting/host/ipc_video_frame_capturer.cc ('k') | remoting/host/it2me/it2me_confirmation_dialog.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698