Do not invoke cursor-hiding codepath on keypress in non-ChromeOS Aura
[chromium-blink-merge.git] / remoting / protocol / input_filter.cc
blob178fde771e3bded79b5b68bb76b2487bf09a96a4
1 // Copyright (c) 2012 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.
5 #include "remoting/protocol/input_filter.h"
7 namespace remoting {
8 namespace protocol {
10 InputFilter::InputFilter() : input_stub_(NULL), enabled_(true) {
13 InputFilter::InputFilter(InputStub* input_stub)
14 : input_stub_(input_stub), enabled_(true) {
17 InputFilter::~InputFilter() {
20 void InputFilter::InjectKeyEvent(const KeyEvent& event) {
21 if (enabled_ && input_stub_ != NULL)
22 input_stub_->InjectKeyEvent(event);
25 void InputFilter::InjectMouseEvent(const MouseEvent& event) {
26 if (enabled_ && input_stub_ != NULL)
27 input_stub_->InjectMouseEvent(event);
30 } // namespace protocol
31 } // namespace remoting