| 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
|
|
|