// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "components/optimization_guide/core/model_execution/repetition_checker.h" #include "components/optimization_guide/core/optimization_guide_features.h" namespace optimization_guide { bool HasRepeatingSuffix(int min_chars, int num_repeats, std::string_view text) { … } bool HasRepeatingSuffix(std::string_view text) { … } } // namespace optimization_guide