diff options
author | alexeypa@chromium.org <alexeypa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-04 06:46:59 +0000 |
---|---|---|
committer | alexeypa@chromium.org <alexeypa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-04 06:46:59 +0000 |
commit | 97328ee0c9ae5551dffe424110936a65b0503da3 (patch) | |
tree | 7ada37ecd0db828a78fa998b16dfd9a48d06badd /remoting/host/desktop_session_win.cc | |
parent | 87986edaa09ffc9c1c78947f540fcdb75eb08f9f (diff) | |
download | chromium_src-97328ee0c9ae5551dffe424110936a65b0503da3.zip chromium_src-97328ee0c9ae5551dffe424110936a65b0503da3.tar.gz chromium_src-97328ee0c9ae5551dffe424110936a65b0503da3.tar.bz2 |
Emulate pressing Ctrl+Alt+End making the RDP ActiveX control to send Secure Attention Sequence to the session.
BUG=246409
Review URL: https://chromiumcodereview.appspot.com/15894034
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@203874 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host/desktop_session_win.cc')
-rw-r--r-- | remoting/host/desktop_session_win.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/remoting/host/desktop_session_win.cc b/remoting/host/desktop_session_win.cc index 5d126d2..1ae4fa5 100644 --- a/remoting/host/desktop_session_win.cc +++ b/remoting/host/desktop_session_win.cc @@ -287,9 +287,7 @@ void RdpSession::SetScreenResolution(const ScreenResolution& resolution) { void RdpSession::InjectSas() { DCHECK(caller_task_runner()->BelongsToCurrentThread()); - // TODO(alexeypa): implement SAS injection for RDP sessions here. - // See http://crbug.com/137696. - NOTIMPLEMENTED(); + rdp_desktop_session_->InjectSas(); } RdpSession::EventHandler::EventHandler( |