// 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 COMPONENTS_AUTOFILL_CORE_BROWSER_UI_FAST_CHECKOUT_DELEGATE_H_ #define COMPONENTS_AUTOFILL_CORE_BROWSER_UI_FAST_CHECKOUT_DELEGATE_H_ #include "components/autofill/core/common/form_data.h" #include "components/autofill/core/common/form_field_data.h" namespace autofill { class AutofillManager; // Delegate for in-browser Fast Checkout (FC) surface display and selection. // Currently FC surface is eligible only for particular forms on click on // an empty focusable text input field. // // It is supposed to be owned by the given `BrowserAutofillManager`, and // interact with its `FastCheckoutClient`. class FastCheckoutDelegate { … }; } // namespace autofill #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_UI_FAST_CHECKOUT_DELEGATE_H_