// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_NAVIGATION_PREDICTOR_PRELOADING_MODEL_EXECUTOR_H_ #define CHROME_BROWSER_NAVIGATION_PREDICTOR_PRELOADING_MODEL_EXECUTOR_H_ #include "components/optimization_guide/core/base_model_executor.h" // A model executor to run the history clusters module ranking model. class PreloadingModelExecutor : public optimization_guide::BaseModelExecutor<float, const std::vector<float>&> { … }; #endif // CHROME_BROWSER_NAVIGATION_PREDICTOR_PRELOADING_MODEL_EXECUTOR_H_