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

Unified Diff: chrome/common/extensions/api/passwords_private.idl

Issue 1892613006: Add functions to the passwords private api that update the lists. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
Index: chrome/common/extensions/api/passwords_private.idl
diff --git a/chrome/common/extensions/api/passwords_private.idl b/chrome/common/extensions/api/passwords_private.idl
index 1b1d0413119f3cc7024cac32f34689933874576f..d8a0461546adcae0926d0792add36e22422eae5b 100644
--- a/chrome/common/extensions/api/passwords_private.idl
+++ b/chrome/common/extensions/api/passwords_private.idl
@@ -60,6 +60,14 @@ namespace passwordsPrivate {
// |loginPair|: The LoginPair corresponding to the entry whose password
// is to be returned.
static void requestPlaintextPassword(LoginPair loginPair);
+
+ // Returns the list of saved passwords using the
+ // |onSavedPasswordsListChanged| event.
+ static void requestSavedPasswordList();
Devlin 2016/04/16 00:41:49 I thought we automatically sent these when a liste
Devlin 2016/04/16 00:43:34 I guess I should have looked at part 2 of this ser
stevenjb 2016/04/18 18:48:18 I agree. The signature can match that of the event
+
+ // Returns the list of password exceptions using the
+ // |onPasswordExceptionsListChanged| event.
+ static void requestPasswordExceptionList();
};
interface Events {

Powered by Google App Engine
This is Rietveld 408576698