Index: remoting/protocol/host_control_dispatcher.cc |
diff --git a/remoting/protocol/host_control_dispatcher.cc b/remoting/protocol/host_control_dispatcher.cc |
index fb8aee94188bc111745ec09d893eef012fd2c32e..1308972c1c3daf54188c57fc4d0661d6ccca0e38 100644 |
--- a/remoting/protocol/host_control_dispatcher.cc |
+++ b/remoting/protocol/host_control_dispatcher.cc |
@@ -11,6 +11,7 @@ |
#include "remoting/proto/internal.pb.h" |
#include "remoting/protocol/clipboard_stub.h" |
#include "remoting/protocol/host_stub.h" |
+#include "remoting/protocol/message_pipe.h" |
#include "remoting/protocol/message_serialization.h" |
namespace remoting { |
@@ -24,34 +25,34 @@ void HostControlDispatcher::SetCapabilities( |
const Capabilities& capabilities) { |
ControlMessage message; |
message.mutable_capabilities()->CopyFrom(capabilities); |
- writer()->Write(SerializeAndFrameMessage(message), base::Closure()); |
+ message_pipe()->Send(&message, base::Closure()); |
} |
void HostControlDispatcher::SetPairingResponse( |
const PairingResponse& pairing_response) { |
ControlMessage message; |
message.mutable_pairing_response()->CopyFrom(pairing_response); |
- writer()->Write(SerializeAndFrameMessage(message), base::Closure()); |
+ message_pipe()->Send(&message, base::Closure()); |
} |
void HostControlDispatcher::DeliverHostMessage( |
const ExtensionMessage& message) { |
ControlMessage control_message; |
control_message.mutable_extension_message()->CopyFrom(message); |
- writer()->Write(SerializeAndFrameMessage(control_message), base::Closure()); |
+ message_pipe()->Send(&control_message, base::Closure()); |
} |
void HostControlDispatcher::InjectClipboardEvent(const ClipboardEvent& event) { |
ControlMessage message; |
message.mutable_clipboard_event()->CopyFrom(event); |
- writer()->Write(SerializeAndFrameMessage(message), base::Closure()); |
+ message_pipe()->Send(&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()); |
+ message_pipe()->Send(&message, base::Closure()); |
} |
void HostControlDispatcher::OnIncomingMessage( |