| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 // This file was generated by: | 5 // This file was generated by: |
| 6 // tools/json_schema_compiler/compiler.py. | 6 // tools/json_schema_compiler/compiler.py. |
| 7 // NOTE: The format of types has changed. 'FooType' is now | 7 // NOTE: The format of types has changed. 'FooType' is now |
| 8 // 'chrome.passwordsPrivate.FooType'. | 8 // 'chrome.passwordsPrivate.FooType'. |
| 9 // Please run the closure compiler before committing changes. | 9 // Please run the closure compiler before committing changes. |
| 10 // See https://chromium.googlesource.com/chromium/src/+/master/docs/closure_comp
ilation.md | 10 // See https://chromium.googlesource.com/chromium/src/+/master/docs/closure_comp
ilation.md |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 /** | 86 /** |
| 87 * Returns the list of password exceptions. | 87 * Returns the list of password exceptions. |
| 88 * @param {function(!Array<string>):void} callback Called with the list of | 88 * @param {function(!Array<string>):void} callback Called with the list of |
| 89 * password exceptions. | 89 * password exceptions. |
| 90 * @see https://developer.chrome.com/extensions/passwordsPrivate#method-getPassw
ordExceptionList | 90 * @see https://developer.chrome.com/extensions/passwordsPrivate#method-getPassw
ordExceptionList |
| 91 */ | 91 */ |
| 92 chrome.passwordsPrivate.getPasswordExceptionList = function(callback) {}; | 92 chrome.passwordsPrivate.getPasswordExceptionList = function(callback) {}; |
| 93 | 93 |
| 94 /** | 94 /** |
| 95 * Fired when the saved passwords list has changed, meaning that an entry has | 95 * Fired when the saved passwords list has changed, meaning that an entry has |
| 96 * been added or removed. Note that this event fires as soon as a listener is | 96 * been added or removed. |
| 97 * added. | |
| 98 * @type {!ChromeEvent} | 97 * @type {!ChromeEvent} |
| 99 * @see https://developer.chrome.com/extensions/passwordsPrivate#event-onSavedPa
sswordsListChanged | 98 * @see https://developer.chrome.com/extensions/passwordsPrivate#event-onSavedPa
sswordsListChanged |
| 100 */ | 99 */ |
| 101 chrome.passwordsPrivate.onSavedPasswordsListChanged; | 100 chrome.passwordsPrivate.onSavedPasswordsListChanged; |
| 102 | 101 |
| 103 /** | 102 /** |
| 104 * Fired when the password exceptions list has changed, meaning that an entry | 103 * Fired when the password exceptions list has changed, meaning that an entry |
| 105 * has been added or removed. Note that this event fires as soon as a listener | 104 * has been added or removed. |
| 106 * is added. | |
| 107 * @type {!ChromeEvent} | 105 * @type {!ChromeEvent} |
| 108 * @see https://developer.chrome.com/extensions/passwordsPrivate#event-onPasswor
dExceptionsListChanged | 106 * @see https://developer.chrome.com/extensions/passwordsPrivate#event-onPasswor
dExceptionsListChanged |
| 109 */ | 107 */ |
| 110 chrome.passwordsPrivate.onPasswordExceptionsListChanged; | 108 chrome.passwordsPrivate.onPasswordExceptionsListChanged; |
| 111 | 109 |
| 112 /** | 110 /** |
| 113 * Fired when a plaintext password has been fetched in response to a call to | 111 * Fired when a plaintext password has been fetched in response to a call to |
| 114 * chrome.passwordsPrivate.requestPlaintextPassword(). | 112 * chrome.passwordsPrivate.requestPlaintextPassword(). |
| 115 * @type {!ChromeEvent} | 113 * @type {!ChromeEvent} |
| 116 * @see https://developer.chrome.com/extensions/passwordsPrivate#event-onPlainte
xtPasswordRetrieved | 114 * @see https://developer.chrome.com/extensions/passwordsPrivate#event-onPlainte
xtPasswordRetrieved |
| 117 */ | 115 */ |
| 118 chrome.passwordsPrivate.onPlaintextPasswordRetrieved; | 116 chrome.passwordsPrivate.onPlaintextPasswordRetrieved; |
| OLD | NEW |