blob: 445294b71a1a6ce5bf1a0e9b9b57a1581f075063 [file] [log] [blame]
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_FAST_CHECKOUT_FAST_CHECKOUT_TRIGGER_VALIDATOR_IMPL_H_
#define CHROME_BROWSER_FAST_CHECKOUT_FAST_CHECKOUT_TRIGGER_VALIDATOR_IMPL_H_
#include "chrome/browser/fast_checkout/fast_checkout_capabilities_fetcher.h"
#include "chrome/browser/fast_checkout/fast_checkout_enums.h"
#include "chrome/browser/fast_checkout/fast_checkout_personal_data_helper.h"
#include "chrome/browser/fast_checkout/fast_checkout_trigger_validator.h"
class FastCheckoutTriggerValidatorImpl : public FastCheckoutTriggerValidator {
public:
FastCheckoutTriggerValidatorImpl(
autofill::AutofillClient* autofill_client,
FastCheckoutCapabilitiesFetcher* capabilities_fetcher,
FastCheckoutPersonalDataHelper* personal_data_helper);
~FastCheckoutTriggerValidatorImpl() override = default;
FastCheckoutTriggerValidatorImpl(const FastCheckoutTriggerValidatorImpl&) =
delete;
FastCheckoutTriggerValidatorImpl& operator=(
const FastCheckoutTriggerValidatorImpl&) = delete;
// FastCheckoutTriggerValidator:
bool ShouldRun(
const autofill::FormData& form,
const autofill::FormFieldData& field,
const FastCheckoutUIState ui_state,
const bool is_running,
const autofill::AutofillManager& autofill_manager) const override;
bool HasValidPersonalData() const override;
private:
bool IsTriggerForm(const autofill::FormData& form,
const autofill::FormFieldData& field) const;
void LogAutofillInternals(std::string message) const;
raw_ptr<autofill::AutofillClient> autofill_client_;
raw_ptr<FastCheckoutCapabilitiesFetcher> capabilities_fetcher_;
raw_ptr<FastCheckoutPersonalDataHelper> personal_data_helper_;
};
#endif