// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef REMOTING_PROTOCOL_INPUT_FILTER_H_ #define REMOTING_PROTOCOL_INPUT_FILTER_H_ #include "base/compiler_specific.h" #include "base/memory/raw_ptr.h" #include "remoting/protocol/input_stub.h" namespace remoting::protocol { // Forwards input events to |input_stub|, if configured. Input forwarding may // also be disabled independently of the |input_stub| being set. InputFilters // initially have input forwarding enabled. class InputFilter : public InputStub { … }; } // namespace remoting::protocol #endif // REMOTING_PROTOCOL_INPUT_FILTER_H_