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

Side by Side Diff: remoting/protocol/client_event_dispatcher.cc

Issue 8574025: Refactor client channel dispatchers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 9 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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
OLDNEW
« no previous file with comments | « remoting/protocol/client_event_dispatcher.h ('k') | remoting/protocol/client_message_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698