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

Unified Diff: remoting/protocol/input_sender.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/protocol/input_sender.h ('k') | remoting/remoting.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/input_sender.cc
diff --git a/remoting/protocol/input_sender.cc b/remoting/protocol/input_sender.cc
deleted file mode 100644
index 0ab2923bd0dc2bef515f6aeb8add96ec52495063..0000000000000000000000000000000000000000
--- a/remoting/protocol/input_sender.cc
+++ /dev/null
@@ -1,50 +0,0 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// This stub is thread safe because of the use of BufferedSocketWriter.
-// BufferedSocketWriter buffers messages and send them on the right thread.
-
-#include "remoting/protocol/input_sender.h"
-
-#include "base/task.h"
-#include "base/time.h"
-#include "remoting/proto/event.pb.h"
-#include "remoting/proto/internal.pb.h"
-#include "remoting/protocol/buffered_socket_writer.h"
-#include "remoting/protocol/util.h"
-
-namespace remoting {
-namespace protocol {
-
-InputSender::InputSender(base::MessageLoopProxy* message_loop,
- net::Socket* socket)
- : buffered_writer_(new BufferedSocketWriter(message_loop)) {
- // TODO(garykac) Set write failed callback.
- DCHECK(socket);
- buffered_writer_->Init(socket, BufferedSocketWriter::WriteFailedCallback());
-}
-
-InputSender::~InputSender() {
-}
-
-void InputSender::InjectKeyEvent(const KeyEvent& event) {
- EventMessage message;
- message.set_sequence_number(base::Time::Now().ToInternalValue());
- message.mutable_key_event()->CopyFrom(event);
- buffered_writer_->Write(SerializeAndFrameMessage(message), base::Closure());
-}
-
-void InputSender::InjectMouseEvent(const MouseEvent& event) {
- EventMessage message;
- message.set_sequence_number(base::Time::Now().ToInternalValue());
- message.mutable_mouse_event()->CopyFrom(event);
- buffered_writer_->Write(SerializeAndFrameMessage(message), base::Closure());
-}
-
-void InputSender::Close() {
- buffered_writer_->Close();
-}
-
-} // namespace protocol
-} // namespace remoting
« no previous file with comments | « remoting/protocol/input_sender.h ('k') | remoting/remoting.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698