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

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

Issue 1907813002: Make the URLs in the password exceptions list clickable. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove-implicit-update.gitbr
Patch Set: feedback Created 4 years, 8 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
« no previous file with comments | « chrome/test/data/webui/settings/settings_passwords_section_browsertest.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 20 matching lines...) Expand all
31 * linkUrl: string, 31 * linkUrl: string,
32 * numCharactersInPassword: number, 32 * numCharactersInPassword: number,
33 * federationText: (string|undefined) 33 * federationText: (string|undefined)
34 * }} 34 * }}
35 * @see https://developer.chrome.com/extensions/passwordsPrivate#type-PasswordUi Entry 35 * @see https://developer.chrome.com/extensions/passwordsPrivate#type-PasswordUi Entry
36 */ 36 */
37 chrome.passwordsPrivate.PasswordUiEntry; 37 chrome.passwordsPrivate.PasswordUiEntry;
38 38
39 /** 39 /**
40 * @typedef {{ 40 * @typedef {{
41 * exceptionUrl: string,
42 * linkUrl: string
43 * }}
44 * @see https://developer.chrome.com/extensions/passwordsPrivate#type-ExceptionP air
45 */
46 chrome.passwordsPrivate.ExceptionPair;
47
48 /**
49 * @typedef {{
41 * loginPair: !chrome.passwordsPrivate.LoginPair, 50 * loginPair: !chrome.passwordsPrivate.LoginPair,
42 * plaintextPassword: string 51 * plaintextPassword: string
43 * }} 52 * }}
44 * @see https://developer.chrome.com/extensions/passwordsPrivate#type-PlaintextP asswordEventParameters 53 * @see https://developer.chrome.com/extensions/passwordsPrivate#type-PlaintextP asswordEventParameters
45 */ 54 */
46 chrome.passwordsPrivate.PlaintextPasswordEventParameters; 55 chrome.passwordsPrivate.PlaintextPasswordEventParameters;
47 56
48 /** 57 /**
49 * Removes the saved password corresponding to |loginPair|. If no saved password 58 * Removes the saved password corresponding to |loginPair|. If no saved password
50 * for this pair exists, this function is a no-op. 59 * for this pair exists, this function is a no-op.
(...skipping 27 matching lines...) Expand all
78 /** 87 /**
79 * Returns the list of saved passwords. 88 * Returns the list of saved passwords.
80 * @param {function(!Array<!chrome.passwordsPrivate.PasswordUiEntry>):void} 89 * @param {function(!Array<!chrome.passwordsPrivate.PasswordUiEntry>):void}
81 * callback Called with the list of saved passwords. 90 * callback Called with the list of saved passwords.
82 * @see https://developer.chrome.com/extensions/passwordsPrivate#method-getSaved PasswordList 91 * @see https://developer.chrome.com/extensions/passwordsPrivate#method-getSaved PasswordList
83 */ 92 */
84 chrome.passwordsPrivate.getSavedPasswordList = function(callback) {}; 93 chrome.passwordsPrivate.getSavedPasswordList = function(callback) {};
85 94
86 /** 95 /**
87 * Returns the list of password exceptions. 96 * Returns the list of password exceptions.
88 * @param {function(!Array<string>):void} callback Called with the list of 97 * @param {function(!Array<!chrome.passwordsPrivate.ExceptionPair>):void}
89 * password exceptions. 98 * callback Called with the list of password exceptions.
90 * @see https://developer.chrome.com/extensions/passwordsPrivate#method-getPassw ordExceptionList 99 * @see https://developer.chrome.com/extensions/passwordsPrivate#method-getPassw ordExceptionList
91 */ 100 */
92 chrome.passwordsPrivate.getPasswordExceptionList = function(callback) {}; 101 chrome.passwordsPrivate.getPasswordExceptionList = function(callback) {};
93 102
94 /** 103 /**
95 * Fired when the saved passwords list has changed, meaning that an entry has 104 * Fired when the saved passwords list has changed, meaning that an entry has
96 * been added or removed. 105 * been added or removed.
97 * @type {!ChromeEvent} 106 * @type {!ChromeEvent}
98 * @see https://developer.chrome.com/extensions/passwordsPrivate#event-onSavedPa sswordsListChanged 107 * @see https://developer.chrome.com/extensions/passwordsPrivate#event-onSavedPa sswordsListChanged
99 */ 108 */
100 chrome.passwordsPrivate.onSavedPasswordsListChanged; 109 chrome.passwordsPrivate.onSavedPasswordsListChanged;
101 110
102 /** 111 /**
103 * Fired when the password exceptions list has changed, meaning that an entry 112 * Fired when the password exceptions list has changed, meaning that an entry
104 * has been added or removed. 113 * has been added or removed.
105 * @type {!ChromeEvent} 114 * @type {!ChromeEvent}
106 * @see https://developer.chrome.com/extensions/passwordsPrivate#event-onPasswor dExceptionsListChanged 115 * @see https://developer.chrome.com/extensions/passwordsPrivate#event-onPasswor dExceptionsListChanged
107 */ 116 */
108 chrome.passwordsPrivate.onPasswordExceptionsListChanged; 117 chrome.passwordsPrivate.onPasswordExceptionsListChanged;
109 118
110 /** 119 /**
111 * Fired when a plaintext password has been fetched in response to a call to 120 * Fired when a plaintext password has been fetched in response to a call to
112 * chrome.passwordsPrivate.requestPlaintextPassword(). 121 * chrome.passwordsPrivate.requestPlaintextPassword().
113 * @type {!ChromeEvent} 122 * @type {!ChromeEvent}
114 * @see https://developer.chrome.com/extensions/passwordsPrivate#event-onPlainte xtPasswordRetrieved 123 * @see https://developer.chrome.com/extensions/passwordsPrivate#event-onPlainte xtPasswordRetrieved
115 */ 124 */
116 chrome.passwordsPrivate.onPlaintextPasswordRetrieved; 125 chrome.passwordsPrivate.onPlaintextPasswordRetrieved;
OLDNEW
« no previous file with comments | « chrome/test/data/webui/settings/settings_passwords_section_browsertest.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698