// 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_MOUSE_INPUT_FILTER_H_ #define REMOTING_PROTOCOL_MOUSE_INPUT_FILTER_H_ #include "base/compiler_specific.h" #include "remoting/protocol/display_size.h" #include "remoting/protocol/input_filter.h" #include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h" namespace remoting::protocol { // Filtering InputStub implementation which scales mouse events based on the // supplied input and output dimensions, and clamps their coordinates to the // output dimensions, before passing events on to |input_stub|. class MouseInputFilter : public InputFilter { … }; } // namespace remoting::protocol #endif // REMOTING_PROTOCOL_MOUSE_INPUT_FILTER_H_