| Index: remoting/protocol/host_control_dispatcher.cc
|
| diff --git a/remoting/protocol/host_control_dispatcher.cc b/remoting/protocol/host_control_dispatcher.cc
|
| index 1932cac076cc84c935c479061a99f58d615421fb..42887ab12e89a08af1d63e00a513d229c20939a8 100644
|
| --- a/remoting/protocol/host_control_dispatcher.cc
|
| +++ b/remoting/protocol/host_control_dispatcher.cc
|
| @@ -40,6 +40,13 @@ void HostControlDispatcher::InjectClipboardEvent(const ClipboardEvent& event) {
|
| writer_->Write(SerializeAndFrameMessage(message), base::Closure());
|
| }
|
|
|
| +void HostControlDispatcher::SetCursorShape(
|
| + const CursorShapeInfo& cursor_shape) {
|
| + ControlMessage message;
|
| + message.mutable_cursor_shape()->CopyFrom(cursor_shape);
|
| + writer_->Write(SerializeAndFrameMessage(message), base::Closure());
|
| +}
|
| +
|
| void HostControlDispatcher::OnMessageReceived(
|
| scoped_ptr<ControlMessage> message, const base::Closure& done_task) {
|
| DCHECK(clipboard_stub_);
|
|
|