#include "ui/base/prediction/input_predictor_unittest_helpers.h"
namespace ui {
InputPredictorTest::InputPredictorTest() = default;
InputPredictorTest::~InputPredictorTest() = default;
void InputPredictorTest::ValidatePredictor(
const std::vector<double>& x,
const std::vector<double>& y,
const std::vector<double>& timestamp_ms) { … }
void InputPredictorTest::ValidatePredictor(
const std::vector<double>& events_x,
const std::vector<double>& events_y,
const std::vector<double>& events_time_ms,
const std::vector<double>& prediction_time_ms,
const std::vector<double>& predicted_x,
const std::vector<double>& predicted_y) { … }
}