chromium/components/autofill/core/browser/autofill_browser_util.cc

// Copyright 2019 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/core/browser/autofill_browser_util.h"

#include "components/autofill/core/browser/autofill_client.h"
#include "components/autofill/core/browser/form_structure.h"
#include "components/security_interstitials/core/insecure_form_util.h"

namespace autofill {

bool IsFormOrClientNonSecure(const AutofillClient& client,
                             const FormData& form) {}

bool IsFormOrClientNonSecure(const AutofillClient& client,
                             const FormStructure& form) {}

bool IsFormMixedContent(const AutofillClient& client, const FormData& form) {}

bool ShouldAllowCreditCardFallbacks(const AutofillClient& client,
                                    const FormData& form) {}

}  // namespace autofill