blob: 965f40cbcd1324d05b7ef60a8c7069b70b5efbbe [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// 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_SAVE_CARD_UI_H_
#define CHROME_BROWSER_UI_AUTOFILL_SAVE_CARD_UI_H_
namespace autofill {
// The type of save card bubble to show.
enum class BubbleType {
// Save prompt when the user is saving locally.
LOCAL_SAVE,
// Save prompt when uploading a card to Google payments.
UPLOAD_SAVE,
// The sign-in promo that is shown after local save.
SIGN_IN_PROMO,
// The manage cards bubble when bubble is reshown after
// icon is clicked.
MANAGE_CARDS,
// There is no bubble to show anymore. This also
// indicates that the icon should not be visible.
INACTIVE
};
} // namespace autofill
#endif // CHROME_BROWSER_UI_AUTOFILL_SAVE_CARD_UI_H_