| Index: remoting/protocol/host_control_dispatcher.cc
|
| diff --git a/remoting/protocol/host_control_dispatcher.cc b/remoting/protocol/host_control_dispatcher.cc
|
| index 627eb7e7d3f0eacebe33ace7a531bee01101fb3b..c81721903bd21ff20463e9ad4a81550d988f56db 100644
|
| --- a/remoting/protocol/host_control_dispatcher.cc
|
| +++ b/remoting/protocol/host_control_dispatcher.cc
|
| @@ -43,6 +43,12 @@ void HostControlDispatcher::DeliverHostMessage(
|
| message_pipe()->Send(&control_message, base::Closure());
|
| }
|
|
|
| +void HostControlDispatcher::SetVideoLayout(const VideoLayout& layout) {
|
| + ControlMessage message;
|
| + message.mutable_video_layout()->CopyFrom(layout);
|
| + message_pipe()->Send(&message, base::Closure());
|
| +}
|
| +
|
| void HostControlDispatcher::InjectClipboardEvent(const ClipboardEvent& event) {
|
| ControlMessage message;
|
| message.mutable_clipboard_event()->CopyFrom(event);
|
|
|