mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 06:11:37 +00:00
ed468964b8
--HG-- rename : security/manager/pki/src/nsASN1Tree.cpp => security/manager/pki/nsASN1Tree.cpp rename : security/manager/pki/src/nsASN1Tree.h => security/manager/pki/nsASN1Tree.h rename : security/manager/pki/src/nsNSSDialogHelper.cpp => security/manager/pki/nsNSSDialogHelper.cpp rename : security/manager/pki/src/nsNSSDialogHelper.h => security/manager/pki/nsNSSDialogHelper.h rename : security/manager/pki/src/nsNSSDialogs.cpp => security/manager/pki/nsNSSDialogs.cpp rename : security/manager/pki/src/nsNSSDialogs.h => security/manager/pki/nsNSSDialogs.h rename : security/manager/pki/src/nsPKIModule.cpp => security/manager/pki/nsPKIModule.cpp rename : security/manager/pki/src/nsPKIParamBlock.cpp => security/manager/pki/nsPKIParamBlock.cpp rename : security/manager/pki/src/nsPKIParamBlock.h => security/manager/pki/nsPKIParamBlock.h
31 lines
910 B
C++
31 lines
910 B
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* 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/. */
|
|
|
|
#ifndef nsNSSDialogHelper_h
|
|
#define nsNSSDialogHelper_h
|
|
|
|
#include "nsIDOMWindow.h"
|
|
|
|
/**
|
|
* Common class that uses the window watcher service to open a
|
|
* standard dialog, with or without a parent context. The params
|
|
* parameter can be an nsISupportsArray so any number of additional
|
|
* arguments can be used.
|
|
*/
|
|
class nsNSSDialogHelper
|
|
{
|
|
public:
|
|
//The params is going to be either a nsIPKIParamBlock or
|
|
//nsIDialogParamBlock
|
|
static nsresult openDialog(
|
|
nsIDOMWindow *window,
|
|
const char *url,
|
|
nsISupports *params,
|
|
bool modal = true);
|
|
};
|
|
|
|
#endif
|