[android] Scan new credit card from autofill popup.
[chromium-blink-merge.git] / components / autofill / core / browser / popup_item_ids.h
blob7dd75d8fa0015bcc80563e27c767f85a30ad752d
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // This enum defines item identifiers for Autofill popup controller.
7 #ifndef COMPONENTS_AUTOFILL_CORE_BROWSER_POPUP_ITEM_ID_H_
8 #define COMPONENTS_AUTOFILL_CORE_BROWSER_POPUP_ITEM_ID_H_
10 namespace autofill {
12 enum PopupItemId {
13 POPUP_ITEM_ID_AUTOCOMPLETE_ENTRY = 0,
14 POPUP_ITEM_ID_WARNING_MESSAGE = -1,
15 POPUP_ITEM_ID_PASSWORD_ENTRY = -2,
16 POPUP_ITEM_ID_SEPARATOR = -3,
17 POPUP_ITEM_ID_CLEAR_FORM = -4,
18 POPUP_ITEM_ID_AUTOFILL_OPTIONS = -5,
19 POPUP_ITEM_ID_DATALIST_ENTRY = -6,
20 POPUP_ITEM_ID_MAC_ACCESS_CONTACTS = -7,
21 POPUP_ITEM_ID_SCAN_CREDIT_CARD = -8,
24 } // namespace autofill
26 #endif // COMPONENTS_AUTOFILL_CORE_BROWSER_POPUP_ITEM_ID_H_