Index: third_party/closure_compiler/externs/autofill_private.js |
diff --git a/third_party/closure_compiler/externs/autofill_private.js b/third_party/closure_compiler/externs/autofill_private.js |
index dc2f693243f16414e35e0f41fe16168aa5e8ff6b..61498c832014d68543738b9a3dd6557202cefa6e 100644 |
--- a/third_party/closure_compiler/externs/autofill_private.js |
+++ b/third_party/closure_compiler/externs/autofill_private.js |
@@ -136,6 +136,14 @@ chrome.autofillPrivate.saveAddress = function(address) {}; |
chrome.autofillPrivate.getAddressComponents = function(countryCode, callback) {}; |
/** |
+ * Gets the list of addresses. |
+ * @param {function(!Array<!chrome.autofillPrivate.AddressEntry>):void} callback |
+ * Callback which will be called with the list of addresses. |
+ * @see https://developer.chrome.com/extensions/autofillPrivate#method-getAddressList |
+ */ |
+chrome.autofillPrivate.getAddressList = function(callback) {}; |
+ |
+/** |
* Saves the given credit card. If |card| has an empty string as its ID, it will |
* be assigned a new one and added as a new entry. |
* @param {!chrome.autofillPrivate.CreditCardEntry} card The card entry to save. |
@@ -163,6 +171,14 @@ chrome.autofillPrivate.removeEntry = function(guid) {}; |
chrome.autofillPrivate.validatePhoneNumbers = function(params, callback) {}; |
/** |
+ * Gets the list of credit cards. |
+ * @param {function(!Array<!chrome.autofillPrivate.CreditCardEntry>):void} |
+ * callback Callback which will be called with the list of credit cards. |
+ * @see https://developer.chrome.com/extensions/autofillPrivate#method-getCreditCardList |
+ */ |
+chrome.autofillPrivate.getCreditCardList = function(callback) {}; |
+ |
+/** |
* Clears the data associated with a wallet card which was saved locally so that |
* the saved copy is masked (e.g., "Card ending in 1234"). |
* @param {string} guid GUID of the credit card to mask. |