// 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_UI_AUTOFILL_PAYMENTS_SAVE_IBAN_UI_H_
#define CHROME_BROWSER_UI_AUTOFILL_PAYMENTS_SAVE_IBAN_UI_H_

namespace autofill {

// The type of IBAN bubble to show.
enum class IbanBubbleType {
  // There is no bubble to show anymore. This also indicates that the icon
  // should not be visible.
  kInactive = 0,

  // Save prompt when the user is saving locally.
  kLocalSave = 1,

  // Save prompt when the user is saving to the GPay server.
  kUploadSave = 2,

  // The manage IBAN bubble after IBAN is saved.
  kManageSavedIban = 3,

  // The process of uploading IBAN saving is completed.
  kUploadCompleted = 4,

  // IBAN upload is in progress.
  kUploadInProgress = 5
};

}  // namespace autofill

#endif  // CHROME_BROWSER_UI_AUTOFILL_PAYMENTS_SAVE_IBAN_UI_H_
