// Copyright 2018 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_UI_AUTOFILL_PAYMENTS_SAVE_CARD_UI_H_ #define CHROME_BROWSER_UI_AUTOFILL_PAYMENTS_SAVE_CARD_UI_H_ namespace autofill { // The type of save card bubble to show. enum class BubbleType { … }; // The active treatment arm of the AutofillUpstreamUpdatedUi feature. enum class UpdatedDesktopUiTreatmentArm { … }; // Returns the active UpdatedDesktopUiTreatmentArm based on the user's current // Finch configuration. UpdatedDesktopUiTreatmentArm GetUpdatedDesktopUiTreatmentArm(); } // namespace autofill #endif // CHROME_BROWSER_UI_AUTOFILL_PAYMENTS_SAVE_CARD_UI_H_