// 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. #include "components/autofill/content/browser/bad_message.h" #include "base/containers/contains.h" #include "components/autofill/core/common/form_data.h" #include "components/autofill/core/common/form_field_data.h" #include "content/public/browser/render_frame_host.h" namespace autofill::bad_message { bool CheckFrameNotPrerendering(content::RenderFrameHost* frame) { … } bool CheckFieldInForm(const FormData& form, FieldRendererId field_id) { … } } // namespace autofill::bad_message