From 74949c1b3fc512586b0fc52eac6c8f2094de6983 Mon Sep 17 00:00:00 2001 From: "racham%netscape.com" Date: Wed, 13 Feb 2002 00:14:28 +0000 Subject: [PATCH] Fixing bug 80296. This fix allows user to new messages for all authenticated accounts with a single cilck. This command canbe triggered from GetAllNewMessages item of GetMsg button drop marker, File|GetNewMessagesFor or shortcut Ctrl+Shift+T. r=morse, mscott sr=alecf git-svn-id: svn://10.0.0.236/trunk@114342 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/netwerk/base/public/nsIPasswordManager.idl | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/mozilla/netwerk/base/public/nsIPasswordManager.idl b/mozilla/netwerk/base/public/nsIPasswordManager.idl index 43eccc3a7e2..f2aa4dfeb7c 100644 --- a/mozilla/netwerk/base/public/nsIPasswordManager.idl +++ b/mozilla/netwerk/base/public/nsIPasswordManager.idl @@ -36,6 +36,14 @@ interface nsIPasswordManager : nsISupports void addUser(in string host, in wstring user, in wstring pwd); void removeUser(in string host, in wstring user); void removeReject(in string host); + + // Takes hostname, username and password as input parameters and returns + // set of filled-in hostname, username and password for the first + // password element match. Empty string is treated as a wild + // card entry and will be considered as a match for any of the input + // parameters. + void findPasswordEntry(inout string hostURI, inout wstring username, inout wstring password); + readonly attribute nsISimpleEnumerator enumerator; readonly attribute nsISimpleEnumerator rejectEnumerator; };