// 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. #ifndef COMPONENTS_AUTOFILL_CORE_COMMON_FORM_DATA_TEST_API_H_ #define COMPONENTS_AUTOFILL_CORE_COMMON_FORM_DATA_TEST_API_H_ #include "base/check.h" #include "base/containers/span.h" #include "base/memory/raw_ref.h" #include "base/numerics/safe_conversions.h" #include "components/autofill/core/common/form_data.h" namespace autofill { // Exposes some testing (and debugging) operations for FormData. class FormDataTestApi { … }; inline FormDataTestApi test_api(FormData& form) { … } } // namespace autofill #endif // COMPONENTS_AUTOFILL_CORE_COMMON_FORM_DATA_TEST_API_H_