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