| Index: remoting/protocol/client_control_dispatcher.cc
|
| diff --git a/remoting/protocol/client_control_dispatcher.cc b/remoting/protocol/client_control_dispatcher.cc
|
| index 73bff85023361e3376ef4f8e96fe11e1c5e2ce90..b785d3ee09f701a5fddfdacbfaa3ed81c68eb947 100644
|
| --- a/remoting/protocol/client_control_dispatcher.cc
|
| +++ b/remoting/protocol/client_control_dispatcher.cc
|
| @@ -64,6 +64,8 @@ void ClientControlDispatcher::OnMessageReceived(
|
|
|
| if (message->has_clipboard_event()) {
|
| clipboard_stub_->InjectClipboardEvent(message->clipboard_event());
|
| + } else if (message->has_cursor_shape()) {
|
| + cursor_shape_stub_->SetCursorShape(message->cursor_shape());
|
| } else {
|
| LOG(WARNING) << "Unknown control message received.";
|
| }
|
|
|