// 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_GESTURE_INTERPRETER_H_ #define REMOTING_CLIENT_GESTURE_INTERPRETER_H_ #include <memory> #include "base/memory/raw_ptr.h" #include "base/memory/weak_ptr.h" #include "remoting/client/input/touch_input_strategy.h" #include "remoting/client/ui/desktop_viewport.h" #include "remoting/client/ui/fling_animation.h" #include "remoting/proto/event.pb.h" namespace remoting { class ChromotingSession; class RendererProxy; // This is a class for interpreting a raw touch input into actions like moving // the viewport and injecting mouse clicks. class GestureInterpreter { … }; } // namespace remoting #endif // REMOTING_CLIENT_GESTURE_INTERPRETER_H_