// 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_EMPTY_PREDICTOR_H_ #define UI_BASE_PREDICTION_EMPTY_PREDICTOR_H_ #include <optional> #include "base/component_export.h" #include "ui/base/prediction/input_predictor.h" namespace ui { // An empty predictor class. This will not generate any prediction. class COMPONENT_EXPORT(UI_BASE_PREDICTION) EmptyPredictor : public InputPredictor { … }; } // namespace ui #endif // UI_BASE_PREDICTION_EMPTY_PREDICTOR_H_