chromium/remoting/client/input/trackpad_input_strategy.h

// Copyright 2017 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_TRACKPAD_INPUT_STRATEGY_H_
#define REMOTING_CLIENT_INPUT_TRACKPAD_INPUT_STRATEGY_H_

#include "remoting/client/input/touch_input_strategy.h"

namespace remoting {

// This strategy simulate the trackpad's behavior. It keeps a visible cursor
// with positions independent of the location of the touch events.
class TrackpadInputStrategy : public TouchInputStrategy {};

}  // namespace remoting
#endif  // REMOTING_CLIENT_INPUT_TRACKPAD_INPUT_STRATEGY_H_