| Index: remoting/host/win/wts_console_session_process_driver.h
|
| diff --git a/remoting/host/win/wts_console_session_process_driver.h b/remoting/host/win/wts_console_session_process_driver.h
|
| index 8307ec8e2b157c0a230af97b46988743721bbb29..4c971d0da66e923350889b472f4cab7f60ff532d 100644
|
| --- a/remoting/host/win/wts_console_session_process_driver.h
|
| +++ b/remoting/host/win/wts_console_session_process_driver.h
|
| @@ -19,6 +19,7 @@ class SingleThreadTaskRunner;
|
|
|
| namespace remoting {
|
|
|
| +class SasInjector;
|
| class WorkerProcessLauncher;
|
| class WtsConsoleMonitor;
|
|
|
| @@ -55,6 +56,9 @@ class WtsConsoleSessionProcessDriver
|
| // Stoppable implementation.
|
| virtual void DoStop() OVERRIDE;
|
|
|
| + // Sends Secure Attention Sequence to the console session.
|
| + void OnSendSasToConsole();
|
| +
|
| private:
|
| // Task runner on which public methods of this class must be called.
|
| scoped_refptr<base::SingleThreadTaskRunner> caller_task_runner_;
|
| @@ -68,6 +72,8 @@ class WtsConsoleSessionProcessDriver
|
| // Used to unsubscribe from session attach and detach events.
|
| WtsConsoleMonitor* monitor_;
|
|
|
| + scoped_ptr<SasInjector> sas_injector_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(WtsConsoleSessionProcessDriver);
|
| };
|
|
|
|
|