// 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_UNITTEST_HELPERS_H_ #define UI_BASE_PREDICTION_INPUT_PREDICTOR_UNITTEST_HELPERS_H_ #include "base/time/time.h" #include "testing/gtest/include/gtest/gtest.h" #include "ui/base/prediction/input_predictor.h" #include "ui/base/prediction/prediction_unittest_helpers.h" namespace ui { constexpr base::TimeDelta kExpectedDefaultTimeInterval = …; // Base class for predictor unit tests class InputPredictorTest : public testing::Test { … }; } // namespace ui #endif // UI_BASE_PREDICTION_INPUT_PREDICTOR_UNITTEST_HELPERS_H_