chromium/remoting/client/input/touch_input_scaler.h

// Copyright 2015 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_CLIENT_INPUT_TOUCH_INPUT_SCALER_H_
#define REMOTING_CLIENT_INPUT_TOUCH_INPUT_SCALER_H_

#include "remoting/protocol/input_filter.h"
#include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h"

namespace remoting {

namespace protocol {
class TouchEvent;
}  // namespace protocol

// Scales the touch input coordinates to host coordinates and clamps so
// that the values do not go outside the remote desktop.
// Also resizes the touch size.
class TouchInputScaler : public protocol::InputFilter {};

}  // namespace remoting

#endif  // REMOTING_CLIENT_INPUT_TOUCH_INPUT_SCALER_H_