mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 21:58:41 +02:00
--HG-- rename : embedding/components/windowwatcher/src/nsAutoWindowStateHelper.cpp => embedding/components/windowwatcher/nsAutoWindowStateHelper.cpp rename : embedding/components/windowwatcher/src/nsAutoWindowStateHelper.h => embedding/components/windowwatcher/nsAutoWindowStateHelper.h rename : embedding/components/windowwatcher/src/nsDialogParamBlock.cpp => embedding/components/windowwatcher/nsDialogParamBlock.cpp rename : embedding/components/windowwatcher/src/nsDialogParamBlock.h => embedding/components/windowwatcher/nsDialogParamBlock.h rename : embedding/components/windowwatcher/public/nsIDialogParamBlock.idl => embedding/components/windowwatcher/nsIDialogParamBlock.idl rename : embedding/components/windowwatcher/public/nsIPromptFactory.idl => embedding/components/windowwatcher/nsIPromptFactory.idl rename : embedding/components/windowwatcher/public/nsIPromptService.idl => embedding/components/windowwatcher/nsIPromptService.idl rename : embedding/components/windowwatcher/public/nsIPromptService2.idl => embedding/components/windowwatcher/nsIPromptService2.idl rename : embedding/components/windowwatcher/public/nsIWindowWatcher.idl => embedding/components/windowwatcher/nsIWindowWatcher.idl rename : embedding/components/windowwatcher/public/nsPIPromptService.idl => embedding/components/windowwatcher/nsPIPromptService.idl rename : embedding/components/windowwatcher/public/nsPIWindowWatcher.idl => embedding/components/windowwatcher/nsPIWindowWatcher.idl rename : embedding/components/windowwatcher/public/nsPromptUtils.h => embedding/components/windowwatcher/nsPromptUtils.h rename : embedding/components/windowwatcher/src/nsWindowWatcher.cpp => embedding/components/windowwatcher/nsWindowWatcher.cpp rename : embedding/components/windowwatcher/src/nsWindowWatcher.h => embedding/components/windowwatcher/nsWindowWatcher.h
45 lines
1.7 KiB
Text
45 lines
1.7 KiB
Text
/* 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);
|
|
};
|
|
|