2001-02-07 04:25:16 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
2012-05-31 13:33:35 +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/. */
|
2001-02-07 04:25:16 +03:00
|
|
|
|
2016-09-21 14:34:12 +03:00
|
|
|
#ifndef nsNSSDialogs_h
|
|
|
|
#define nsNSSDialogs_h
|
2001-02-07 04:25:16 +03:00
|
|
|
|
2016-09-21 14:34:12 +03:00
|
|
|
#include "nsCOMPtr.h"
|
2002-09-17 22:51:22 +04:00
|
|
|
#include "nsICertificateDialogs.h"
|
|
|
|
#include "nsIClientAuthDialogs.h"
|
2002-09-17 23:43:13 +04:00
|
|
|
#include "nsIGenKeypairInfoDlg.h"
|
2001-02-14 23:09:33 +03:00
|
|
|
#include "nsIStringBundle.h"
|
2016-09-21 14:34:12 +03:00
|
|
|
#include "nsITokenDialogs.h"
|
|
|
|
#include "nsITokenPasswordDialogs.h"
|
2001-02-14 23:09:33 +03:00
|
|
|
|
2001-02-07 04:25:16 +03:00
|
|
|
#define NS_NSSDIALOGS_CID \
|
|
|
|
{ 0x518e071f, 0x1dd2, 0x11b2, \
|
|
|
|
{ 0x93, 0x7e, 0xc4, 0x5f, 0x14, 0xde, 0xf7, 0x78 }}
|
|
|
|
|
2016-09-21 14:34:12 +03:00
|
|
|
class nsNSSDialogs : public nsICertificateDialogs
|
|
|
|
, public nsIClientAuthDialogs
|
|
|
|
, public nsIGeneratingKeypairInfoDialogs
|
|
|
|
, public nsITokenDialogs
|
|
|
|
, public nsITokenPasswordDialogs
|
2001-02-07 04:25:16 +03:00
|
|
|
{
|
|
|
|
public:
|
2013-07-19 06:24:14 +04:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
2001-02-10 05:53:10 +03:00
|
|
|
NS_DECL_NSITOKENPASSWORDDIALOGS
|
2001-02-27 00:50:54 +03:00
|
|
|
NS_DECL_NSICERTIFICATEDIALOGS
|
2001-04-03 05:06:17 +04:00
|
|
|
NS_DECL_NSICLIENTAUTHDIALOGS
|
2001-05-03 05:00:56 +04:00
|
|
|
NS_DECL_NSITOKENDIALOGS
|
2001-08-16 03:27:42 +04:00
|
|
|
NS_DECL_NSIGENERATINGKEYPAIRINFODIALOGS
|
2001-02-07 04:25:16 +03:00
|
|
|
nsNSSDialogs();
|
2001-02-14 23:09:33 +03:00
|
|
|
|
|
|
|
nsresult Init();
|
|
|
|
|
|
|
|
protected:
|
2014-06-24 02:40:03 +04:00
|
|
|
virtual ~nsNSSDialogs();
|
2001-02-24 03:20:32 +03:00
|
|
|
nsCOMPtr<nsIStringBundle> mPIPStringBundle;
|
2001-02-07 04:25:16 +03:00
|
|
|
};
|
|
|
|
|
2016-09-21 14:34:12 +03:00
|
|
|
#endif // nsNSSDialogs_h
|