| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 /** @fileoverview Externs generated from namespace: autofillPrivate */ | 5 /** @fileoverview Externs generated from namespace: autofillPrivate */ |
| 6 | 6 |
| 7 /** | 7 /** |
| 8 * @const | 8 * @const |
| 9 */ | 9 */ |
| 10 chrome.autofillPrivate = {}; | 10 chrome.autofillPrivate = {}; |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 * emailAddresses: (!Array<string>|undefined), | 52 * emailAddresses: (!Array<string>|undefined), |
| 53 * languageCode: (string|undefined), | 53 * languageCode: (string|undefined), |
| 54 * metadata: (AutofillMetadata|undefined) | 54 * metadata: (AutofillMetadata|undefined) |
| 55 * }} | 55 * }} |
| 56 * @see https://developer.chrome.com/extensions/autofillPrivate#type-AddressEntr
y | 56 * @see https://developer.chrome.com/extensions/autofillPrivate#type-AddressEntr
y |
| 57 */ | 57 */ |
| 58 var AddressEntry; | 58 var AddressEntry; |
| 59 | 59 |
| 60 /** | 60 /** |
| 61 * @typedef {{ | 61 * @typedef {{ |
| 62 * field: number, | 62 * field: !chrome.autofillPrivate.AddressField, |
| 63 * fieldName: string, | 63 * fieldName: string, |
| 64 * isLongField: boolean, | 64 * isLongField: boolean, |
| 65 * placeholder: (string|undefined) | 65 * placeholder: (string|undefined) |
| 66 * }} | 66 * }} |
| 67 * @see https://developer.chrome.com/extensions/autofillPrivate#type-AddressComp
onent | 67 * @see https://developer.chrome.com/extensions/autofillPrivate#type-AddressComp
onent |
| 68 */ | 68 */ |
| 69 var AddressComponent; | 69 var AddressComponent; |
| 70 | 70 |
| 71 /** | 71 /** |
| 72 * @typedef {{ | 72 * @typedef {{ |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 | 171 |
| 172 /** | 172 /** |
| 173 * Fired when the credit card list has changed, meaning that an entry has been | 173 * Fired when the credit card list has changed, meaning that an entry has been |
| 174 * added, removed, or changed. |entries| The updated list of entries. | 174 * added, removed, or changed. |entries| The updated list of entries. |
| 175 * @type {!ChromeEvent} | 175 * @type {!ChromeEvent} |
| 176 * @see https://developer.chrome.com/extensions/autofillPrivate#event-onCreditCa
rdListChanged | 176 * @see https://developer.chrome.com/extensions/autofillPrivate#event-onCreditCa
rdListChanged |
| 177 */ | 177 */ |
| 178 chrome.autofillPrivate.onCreditCardListChanged; | 178 chrome.autofillPrivate.onCreditCardListChanged; |
| 179 | 179 |
| 180 | 180 |
| OLD | NEW |