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

Unified Diff: remoting/host/sas_injector.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/resizing_host_observer_unittest.cc ('k') | remoting/host/sas_injector_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/sas_injector.h
diff --git a/remoting/host/sas_injector.h b/remoting/host/sas_injector.h
index a77485a0db536f54b15d86a21273de55c64240ff..248eb2967fb24d5e1d4b7ffda7bf38588bb36bd6 100644
--- a/remoting/host/sas_injector.h
+++ b/remoting/host/sas_injector.h
@@ -5,7 +5,7 @@
#ifndef REMOTING_HOST_SAS_INJECTOR_H_
#define REMOTING_HOST_SAS_INJECTOR_H_
-#include "base/memory/scoped_ptr.h"
+#include <memory>
namespace remoting {
@@ -20,7 +20,7 @@ class SasInjector {
// Creates an instance of SasInjector if supported by the OS, otherwise
// returns nullptr.
- static scoped_ptr<SasInjector> Create();
+ static std::unique_ptr<SasInjector> Create();
};
} // namespace remoting
« no previous file with comments | « remoting/host/resizing_host_observer_unittest.cc ('k') | remoting/host/sas_injector_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698