// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_VIZ_COMMON_DELEGATED_INK_PREDICTION_CONFIGURATION_H_ #define COMPONENTS_VIZ_COMMON_DELEGATED_INK_PREDICTION_CONFIGURATION_H_ namespace viz { struct PredictionConfiguration { … }; // The prediction configurations that are being tested. constexpr PredictionConfiguration kPredictionConfigs[] = …; // Current number of different prediction configurations that are being tested. constexpr int kNumberOfPredictionConfigs = …; // Indicates which element of |kPredictionConfigs| is being selected in // tests and viz/common/features.cc enum PredictionConfig { … }; } // namespace viz #endif // COMPONENTS_VIZ_COMMON_DELEGATED_INK_PREDICTION_CONFIGURATION_H_