Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(957)

Unified Diff: remoting/protocol/client_event_dispatcher.cc

Issue 1649063003: Add MessagePipe interface. Use it in ChannelDispatcherBase. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@simple_parser
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/protocol/client_control_dispatcher.cc ('k') | remoting/protocol/client_video_dispatcher.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/client_event_dispatcher.cc
diff --git a/remoting/protocol/client_event_dispatcher.cc b/remoting/protocol/client_event_dispatcher.cc
index 87ae9b3290e3707fec1745fa0f1ee3bf7c8dbd1b..90d23048470e0ad132de5e730967ffc458028ba6 100644
--- a/remoting/protocol/client_event_dispatcher.cc
+++ b/remoting/protocol/client_event_dispatcher.cc
@@ -6,20 +6,18 @@
#include "base/time/time.h"
#include "net/socket/stream_socket.h"
+#include "remoting/base/compound_buffer.h"
#include "remoting/base/constants.h"
#include "remoting/proto/event.pb.h"
#include "remoting/proto/internal.pb.h"
-#include "remoting/protocol/message_serialization.h"
+#include "remoting/protocol/message_pipe.h"
namespace remoting {
namespace protocol {
ClientEventDispatcher::ClientEventDispatcher()
- : ChannelDispatcherBase(kEventChannelName) {
-}
-
-ClientEventDispatcher::~ClientEventDispatcher() {
-}
+ : ChannelDispatcherBase(kEventChannelName) {}
+ClientEventDispatcher::~ClientEventDispatcher() {}
void ClientEventDispatcher::InjectKeyEvent(const KeyEvent& event) {
DCHECK(event.has_usb_keycode());
@@ -27,7 +25,7 @@ void ClientEventDispatcher::InjectKeyEvent(const KeyEvent& event) {
EventMessage message;
message.set_timestamp(base::TimeTicks::Now().ToInternalValue());
message.mutable_key_event()->CopyFrom(event);
- writer()->Write(SerializeAndFrameMessage(message), base::Closure());
+ message_pipe()->Send(&message, base::Closure());
}
void ClientEventDispatcher::InjectTextEvent(const TextEvent& event) {
@@ -35,21 +33,21 @@ void ClientEventDispatcher::InjectTextEvent(const TextEvent& event) {
EventMessage message;
message.set_timestamp(base::TimeTicks::Now().ToInternalValue());
message.mutable_text_event()->CopyFrom(event);
- writer()->Write(SerializeAndFrameMessage(message), base::Closure());
+ message_pipe()->Send(&message, base::Closure());
}
void ClientEventDispatcher::InjectMouseEvent(const MouseEvent& event) {
EventMessage message;
message.set_timestamp(base::TimeTicks::Now().ToInternalValue());
message.mutable_mouse_event()->CopyFrom(event);
- writer()->Write(SerializeAndFrameMessage(message), base::Closure());
+ message_pipe()->Send(&message, base::Closure());
}
void ClientEventDispatcher::InjectTouchEvent(const TouchEvent& event) {
EventMessage message;
message.set_timestamp(base::TimeTicks::Now().ToInternalValue());
message.mutable_touch_event()->CopyFrom(event);
- writer()->Write(SerializeAndFrameMessage(message), base::Closure());
+ message_pipe()->Send(&message, base::Closure());
}
void ClientEventDispatcher::OnIncomingMessage(
« no previous file with comments | « remoting/protocol/client_control_dispatcher.cc ('k') | remoting/protocol/client_video_dispatcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698