#ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_FORM_FOREST_TEST_API_H_
#define COMPONENTS_AUTOFILL_CORE_BROWSER_FORM_FOREST_TEST_API_H_
#include "base/containers/stack.h"
#include "base/memory/raw_ref.h"
#include "components/autofill/core/browser/form_forest.h"
namespace autofill::internal {
class FormForestTestApi { … };
template <typename UnaryFunction>
void FormForestTestApi::TraverseTrees(base::stack<FrameForm>& frontier,
UnaryFunction fun) { … }
inline FormForestTestApi test_api(FormForest& form_forest) { … }
}
#endif