|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /proc/21585/root/usr/share/idl/xulrunner-17.0.10/ |
Upload File : |
/* 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/. */
#include "nsIPromptService.idl"
interface nsIAuthInformation;
interface nsIAuthPromptCallback;
interface nsICancelable;
interface nsIChannel;
interface nsIDOMWindow;
/**
* This is an improved version of nsIPromptService that is less prescriptive
* about the resulting user interface.
*
* @status INCOMPLETE do not freeze before fixing bug 228207
*/
[scriptable, uuid(cf86d196-dbee-4482-9dfa-3477aa128319)]
interface nsIPromptService2 : nsIPromptService {
// NOTE: These functions differ from their nsIAuthPrompt counterparts by
// having additional checkbox parameters
// checkValue can be null meaning to show no checkbox
// checkboxLabel is a wstring so that it can be null from both JS and C++ in
// a convenient way
//
// See nsIAuthPrompt2 for documentation on the semantics of the other
// parameters.
boolean promptAuth(in nsIDOMWindow aParent,
in nsIChannel aChannel,
in uint32_t level,
in nsIAuthInformation authInfo,
in wstring checkboxLabel,
inout boolean checkValue);
nsICancelable asyncPromptAuth(in nsIDOMWindow aParent,
in nsIChannel aChannel,
in nsIAuthPromptCallback aCallback,
in nsISupports aContext,
in uint32_t level,
in nsIAuthInformation authInfo,
in wstring checkboxLabel,
inout boolean checkValue);
};