OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "remoting/protocol/client_event_dispatcher.h" |
| 6 |
| 7 #include "base/message_loop_proxy.h" |
| 8 #include "base/time.h" |
| 9 #include "remoting/proto/event.pb.h" |
| 10 #include "remoting/proto/internal.pb.h" |
| 11 #include "remoting/protocol/buffered_socket_writer.h" |
| 12 #include "remoting/protocol/session.h" |
| 13 #include "remoting/protocol/util.h" |
| 14 |
| 15 namespace remoting { |
| 16 namespace protocol { |
| 17 |
| 18 ClientEventDispatcher::ClientEventDispatcher() |
| 19 : writer_(new BufferedSocketWriter(base::MessageLoopProxy::current())) { |
| 20 } |
| 21 |
| 22 ClientEventDispatcher::~ClientEventDispatcher() { |
| 23 writer_->Close(); |
| 24 } |
| 25 |
| 26 void ClientEventDispatcher::Init(Session* session) { |
| 27 DCHECK(session); |
| 28 |
| 29 // TODO(garykac): Set write failed callback. |
| 30 writer_->Init(session->event_channel(), |
| 31 BufferedSocketWriter::WriteFailedCallback()); |
| 32 } |
| 33 |
| 34 void ClientEventDispatcher::InjectKeyEvent(const KeyEvent& event) { |
| 35 EventMessage message; |
| 36 message.set_sequence_number(base::Time::Now().ToInternalValue()); |
| 37 message.mutable_key_event()->CopyFrom(event); |
| 38 writer_->Write(SerializeAndFrameMessage(message), base::Closure()); |
| 39 } |
| 40 |
| 41 void ClientEventDispatcher::InjectMouseEvent(const MouseEvent& event) { |
| 42 EventMessage message; |
| 43 message.set_sequence_number(base::Time::Now().ToInternalValue()); |
| 44 message.mutable_mouse_event()->CopyFrom(event); |
| 45 writer_->Write(SerializeAndFrameMessage(message), base::Closure()); |
| 46 } |
| 47 |
| 48 } // namespace protocol |
| 49 } // namespace remoting |
OLD | NEW |