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

Unified Diff: remoting/protocol/key_event_tracker.cc

Issue 9465035: Move ClientSession's input logic into separate components. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 8 years, 9 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/key_event_tracker.h ('k') | remoting/protocol/key_event_tracker_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/key_event_tracker.cc
diff --git a/remoting/protocol/key_event_tracker.cc b/remoting/protocol/key_event_tracker.cc
deleted file mode 100644
index d1835a07edae1a60895d0394ccf6acac96e3e31e..0000000000000000000000000000000000000000
--- a/remoting/protocol/key_event_tracker.cc
+++ /dev/null
@@ -1,47 +0,0 @@
-// Copyright (c) 2012 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.
-
-#include "remoting/protocol/key_event_tracker.h"
-
-#include "base/logging.h"
-#include "remoting/proto/event.pb.h"
-
-namespace remoting {
-namespace protocol {
-
-KeyEventTracker::KeyEventTracker(InputStub* input_stub)
- : input_stub_(input_stub) {
-}
-
-KeyEventTracker::~KeyEventTracker() {
-}
-
-void KeyEventTracker::InjectKeyEvent(const KeyEvent& event) {
- DCHECK(event.has_pressed());
- DCHECK(event.has_keycode());
- if (event.pressed()) {
- pressed_keys_.insert(event.keycode());
- } else {
- pressed_keys_.erase(event.keycode());
- }
- input_stub_->InjectKeyEvent(event);
-}
-
-void KeyEventTracker::InjectMouseEvent(const MouseEvent& event) {
- input_stub_->InjectMouseEvent(event);
-}
-
-void KeyEventTracker::ReleaseAllKeys() {
- std::set<int>::iterator i;
- for (i = pressed_keys_.begin(); i != pressed_keys_.end(); ++i) {
- KeyEvent event;
- event.set_keycode(*i);
- event.set_pressed(false);
- input_stub_->InjectKeyEvent(event);
- }
- pressed_keys_.clear();
-}
-
-} // namespace protocol
-} // namespace remoting
« no previous file with comments | « remoting/protocol/key_event_tracker.h ('k') | remoting/protocol/key_event_tracker_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698