// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_BASE_PREDICTION_INPUT_PREDICTOR_H_ #define UI_BASE_PREDICTION_INPUT_PREDICTOR_H_ #include <memory> #include "base/component_export.h" #include "base/time/time.h" #include "ui/gfx/geometry/point_f.h" namespace ui { // This class expects a sequence of inputs with their coordinates and timestamps // and models the input path. It then can predict the coordinates at any given // time. class COMPONENT_EXPORT(UI_BASE_PREDICTION) InputPredictor { … }; } // namespace ui #endif // UI_BASE_PREDICTION_INPUT_PREDICTOR_H_