Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(392)

Side by Side Diff: third_party/closure_compiler/externs/autofill_private.js

Issue 1128203005: Add the IDL and stub implementation for the chrome.passwordsPrivate API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase/lint. Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « extensions/common/permissions/permission_message.h ('k') | third_party/closure_compiler/externs/passwords_private.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698