summaryrefslogtreecommitdiffstats
path: root/chromium/chrome/common/extensions/api/autofill_private.idl
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/chrome/common/extensions/api/autofill_private.idl')
-rw-r--r--chromium/chrome/common/extensions/api/autofill_private.idl13
1 files changed, 6 insertions, 7 deletions
diff --git a/chromium/chrome/common/extensions/api/autofill_private.idl b/chromium/chrome/common/extensions/api/autofill_private.idl
index b41477f776f..18574a99511 100644
--- a/chromium/chrome/common/extensions/api/autofill_private.idl
+++ b/chromium/chrome/common/extensions/api/autofill_private.idl
@@ -239,17 +239,16 @@ namespace autofillPrivate {
// Logs that the server cards edit link was clicked.
static void logServerCardLinkClicked();
+
+ // Enables or disables FIDO Authentication for credit card unmasking.
+ static void setCreditCardFIDOAuthEnabledState(boolean enabled);
};
interface Events {
- // Fired when the address list has changed, meaning that an entry has been
- // added, removed, or changed.
- // |entries| The updated list of entries.
- static void onAddressListChanged(AddressEntry[] entries);
-
- // Fired when the credit card list has changed, meaning that an entry has
+ // Fired when the personal data has changed, meaning that an entry has
// been added, removed, or changed.
// |entries| The updated list of entries.
- static void onCreditCardListChanged(CreditCardEntry[] entries);
+ static void onPersonalDataChanged(AddressEntry[] addressEntries,
+ CreditCardEntry[] creditCardEntries);
};
};