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

Unified Diff: remoting/host/daemon_process_win.cc

Issue 2468523003: Pass the desktop session ID to the remoting network process. (Closed)
Patch Set: rebase Created 4 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
« no previous file with comments | « remoting/host/daemon_process_unittest.cc ('k') | remoting/host/desktop_session_connector.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/daemon_process_win.cc
diff --git a/remoting/host/daemon_process_win.cc b/remoting/host/daemon_process_win.cc
index 94e8e333aa4f5ea633b63974d1ac4da3e95a58a6..1d0649b873732f46e57c9a464e0faac1454a8b28 100644
--- a/remoting/host/daemon_process_win.cc
+++ b/remoting/host/daemon_process_win.cc
@@ -83,6 +83,7 @@ class DaemonProcessWin : public DaemonProcess {
void SendToNetwork(IPC::Message* message) override;
bool OnDesktopSessionAgentAttached(
int terminal_id,
+ int session_id,
const IPC::ChannelHandle& desktop_pipe) override;
protected:
@@ -174,9 +175,10 @@ void DaemonProcessWin::SendToNetwork(IPC::Message* message) {
bool DaemonProcessWin::OnDesktopSessionAgentAttached(
int terminal_id,
+ int session_id,
const IPC::ChannelHandle& desktop_pipe) {
SendToNetwork(new ChromotingDaemonNetworkMsg_DesktopAttached(
- terminal_id, desktop_pipe));
+ terminal_id, session_id, desktop_pipe));
return true;
}
« no previous file with comments | « remoting/host/daemon_process_unittest.cc ('k') | remoting/host/desktop_session_connector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698