1 // Copyright 2024 The Chromium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef BASE_TEST_TEST_SUITE_HELPER_H_ 6 #define BASE_TEST_TEST_SUITE_HELPER_H_ 7 8 namespace base::test { 9 10 class ScopedFeatureList; 11 12 void InitScopedFeatureListForTesting(ScopedFeatureList& scoped_feature_list); 13 14 } // namespace base::test 15 16 #endif // BASE_TEST_TEST_SUITE_HELPER_H_ 17