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

Unified Diff: remoting/host/win/wts_console_session_process_driver.h

Issue 11369024: Calling SendSAS() from a service yo make sure that Secure Attention Sequence can be injected even w… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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
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);
};

Powered by Google App Engine
This is Rietveld 408576698