2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2007-09-01 02:29:55 +04:00
|
|
|
|
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
|
|
|
interface nsILoginInfo;
|
|
|
|
interface nsIDOMWindow;
|
|
|
|
|
2018-04-27 06:36:30 +03:00
|
|
|
webidl Element;
|
|
|
|
|
2014-11-04 22:51:06 +03:00
|
|
|
[scriptable, uuid(425f73b9-b2db-4e8a-88c5-9ac2512934ce)]
|
2007-09-01 02:29:55 +04:00
|
|
|
interface nsILoginManagerPrompter : nsISupports {
|
2015-02-01 00:25:49 +03:00
|
|
|
/**
|
|
|
|
* Initialize the prompter. Must be called before using other interfaces.
|
|
|
|
*
|
|
|
|
* @param aWindow
|
2016-09-19 12:26:57 +03:00
|
|
|
* The window in which the user is doing some login-related action that's
|
2015-02-01 00:25:49 +03:00
|
|
|
* resulting in a need to prompt them for something. The prompt
|
|
|
|
* will be associated with this window (or, if a notification bar
|
|
|
|
* is being used, topmost opener in some cases).
|
2016-08-30 16:47:38 +03:00
|
|
|
*
|
2016-09-19 12:26:57 +03:00
|
|
|
* aWindow can be null if there is no associated window, e.g. in a JSM
|
|
|
|
* or Sandbox. In this case there will be no checkbox to save the login
|
|
|
|
* since the window is needed to know if this is a private context.
|
|
|
|
*
|
2016-08-30 16:47:38 +03:00
|
|
|
* If this window is a content window, the corresponding window and browser
|
|
|
|
* elements will be calculated. If this window is a chrome window, the
|
|
|
|
* corresponding browser element needs to be set using setBrowser.
|
2015-02-01 00:25:49 +03:00
|
|
|
*/
|
|
|
|
void init(in nsIDOMWindow aWindow);
|
2007-09-01 02:29:55 +04:00
|
|
|
|
2015-02-01 00:25:49 +03:00
|
|
|
/**
|
2016-08-30 16:47:38 +03:00
|
|
|
* The browser this prompter is being created for.
|
|
|
|
* This is required if the init function received a chrome window as argument.
|
|
|
|
*/
|
2018-04-27 06:36:30 +03:00
|
|
|
attribute Element browser;
|
2016-08-30 16:47:38 +03:00
|
|
|
|
|
|
|
/**
|
2018-10-02 20:52:54 +03:00
|
|
|
* The opener browser that was used to open the window passed to init.
|
2016-08-30 16:47:38 +03:00
|
|
|
* The opener can be used to determine in which window the prompt
|
2018-10-02 20:52:54 +03:00
|
|
|
* should be shown.
|
2015-02-01 00:25:49 +03:00
|
|
|
*/
|
2018-10-02 20:52:54 +03:00
|
|
|
attribute Element openerBrowser;
|
2014-09-05 04:01:32 +04:00
|
|
|
|
2015-02-01 00:25:49 +03:00
|
|
|
/**
|
|
|
|
* Ask the user if they want to save a login (Yes, Never, Not Now)
|
|
|
|
*
|
|
|
|
* @param aLogin
|
|
|
|
* The login to be saved.
|
|
|
|
*/
|
|
|
|
void promptToSavePassword(in nsILoginInfo aLogin);
|
2007-09-01 02:29:55 +04:00
|
|
|
|
2015-02-01 00:25:49 +03:00
|
|
|
/**
|
2015-09-16 02:04:00 +03:00
|
|
|
* Ask the user if they want to change a login's password or username.
|
|
|
|
* If the user consents, modifyLogin() will be called.
|
2015-02-01 00:25:49 +03:00
|
|
|
*
|
|
|
|
* @param aOldLogin
|
|
|
|
* The existing login (with the old password).
|
|
|
|
* @param aNewLogin
|
|
|
|
* The new login.
|
|
|
|
*/
|
|
|
|
void promptToChangePassword(in nsILoginInfo aOldLogin,
|
|
|
|
in nsILoginInfo aNewLogin);
|
2007-09-01 02:29:55 +04:00
|
|
|
|
2015-02-01 00:25:49 +03:00
|
|
|
/**
|
|
|
|
* Ask the user if they want to change the password for one of
|
|
|
|
* multiple logins, when the caller can't determine exactly which
|
|
|
|
* login should be changed. If the user consents, modifyLogin() will
|
|
|
|
* be called.
|
|
|
|
*
|
|
|
|
* @param logins
|
|
|
|
* An array of existing logins.
|
|
|
|
* @param count
|
|
|
|
* (length of the array)
|
|
|
|
* @param aNewLogin
|
|
|
|
* The new login.
|
|
|
|
*
|
|
|
|
* Note: Because the caller does not know the username of the login
|
|
|
|
* to be changed, aNewLogin.username and aNewLogin.usernameField
|
|
|
|
* will be set (using the user's selection) before modifyLogin()
|
|
|
|
* is called.
|
|
|
|
*/
|
|
|
|
void promptToChangePasswordWithUsernames(
|
|
|
|
[array, size_is(count)] in nsILoginInfo logins,
|
|
|
|
in uint32_t count,
|
|
|
|
in nsILoginInfo aNewLogin);
|
2007-09-01 02:29:55 +04:00
|
|
|
};
|
|
|
|
%{C++
|
|
|
|
|
|
|
|
#define NS_LOGINMANAGERPROMPTER_CONTRACTID "@mozilla.org/login-manager/prompter/;1"
|
|
|
|
|
|
|
|
%}
|