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

Unified 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 side-by-side diff with in-line comments
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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/closure_compiler/externs/passwords_private.js
diff --git a/third_party/closure_compiler/externs/passwords_private.js b/third_party/closure_compiler/externs/passwords_private.js
index cfd9396c4f301bcdb85be0fc6feb5944ca56ae8a..b53aa2643b66abb61ef6e9c82af94fd623a21696 100644
--- a/third_party/closure_compiler/externs/passwords_private.js
+++ b/third_party/closure_compiler/externs/passwords_private.js
@@ -38,6 +38,15 @@ chrome.passwordsPrivate.PasswordUiEntry;
/**
* @typedef {{
+ * exceptionUrl: string,
+ * linkUrl: string
+ * }}
+ * @see https://developer.chrome.com/extensions/passwordsPrivate#type-ExceptionPair
+ */
+chrome.passwordsPrivate.ExceptionPair;
+
+/**
+ * @typedef {{
* loginPair: !chrome.passwordsPrivate.LoginPair,
* plaintextPassword: string
* }}
@@ -85,8 +94,8 @@ chrome.passwordsPrivate.getSavedPasswordList = function(callback) {};
/**
* Returns the list of password exceptions.
- * @param {function(!Array<string>):void} callback Called with the list of
- * password exceptions.
+ * @param {function(!Array<!chrome.passwordsPrivate.ExceptionPair>):void}
+ * callback Called with the list of password exceptions.
* @see https://developer.chrome.com/extensions/passwordsPrivate#method-getPasswordExceptionList
*/
chrome.passwordsPrivate.getPasswordExceptionList = function(callback) {};
« 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