| Index: remoting/host/win/rdp_client_window.h
|
| diff --git a/remoting/host/win/rdp_client_window.h b/remoting/host/win/rdp_client_window.h
|
| index 7699e57a0f0947e30fa1ad1b5a3179a84a927298..012dca95d5a129c4b09669c3a8c134920c7bdcf5 100644
|
| --- a/remoting/host/win/rdp_client_window.h
|
| +++ b/remoting/host/win/rdp_client_window.h
|
| @@ -104,14 +104,18 @@ class RdpClientWindow
|
| void OnDestroy();
|
|
|
| BEGIN_SINK_MAP(RdpClientWindow)
|
| - SINK_ENTRY_EX(1, __uuidof(mstsc::IMsTscAxEvents), 2, OnConnected)
|
| - SINK_ENTRY_EX(1, __uuidof(mstsc::IMsTscAxEvents), 4, OnDisconnected)
|
| - SINK_ENTRY_EX(1, __uuidof(mstsc::IMsTscAxEvents), 10, OnFatalError)
|
| - SINK_ENTRY_EX(1, __uuidof(mstsc::IMsTscAxEvents), 15, OnConfirmClose)
|
| + SINK_ENTRY_EX(1, __uuidof(mstsc::IMsTscAxEvents), 2,
|
| + &RdpClientWindow::OnConnected)
|
| + SINK_ENTRY_EX(1, __uuidof(mstsc::IMsTscAxEvents), 4,
|
| + &RdpClientWindow::OnDisconnected)
|
| + SINK_ENTRY_EX(1, __uuidof(mstsc::IMsTscAxEvents), 10,
|
| + &RdpClientWindow::OnFatalError)
|
| + SINK_ENTRY_EX(1, __uuidof(mstsc::IMsTscAxEvents), 15,
|
| + &RdpClientWindow::OnConfirmClose)
|
| SINK_ENTRY_EX(1, __uuidof(mstsc::IMsTscAxEvents), 18,
|
| - OnAuthenticationWarningDisplayed)
|
| + &RdpClientWindow::OnAuthenticationWarningDisplayed)
|
| SINK_ENTRY_EX(1, __uuidof(mstsc::IMsTscAxEvents), 19,
|
| - OnAuthenticationWarningDismissed)
|
| + &RdpClientWindow::OnAuthenticationWarningDismissed)
|
| END_SINK_MAP()
|
|
|
| // mstsc::IMsTscAxEvents notifications.
|
|
|