Bug 1850713: remove duplicated setting of early hint preloader id in `ScriptLoader...
[gecko.git] / security / manager / pki / nsNSSDialogs.h
blob7528492a5ab619518386d4199f2e2a10e41a2e29
1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef nsNSSDialogs_h
8 #define nsNSSDialogs_h
10 #include "nsCOMPtr.h"
11 #include "nsICertificateDialogs.h"
12 #include "nsIStringBundle.h"
13 #include "nsITokenPasswordDialogs.h"
15 #define NS_NSSDIALOGS_CID \
16 { \
17 0x518e071f, 0x1dd2, 0x11b2, { \
18 0x93, 0x7e, 0xc4, 0x5f, 0x14, 0xde, 0xf7, 0x78 \
19 } \
22 class nsNSSDialogs : public nsICertificateDialogs,
23 public nsITokenPasswordDialogs {
24 public:
25 NS_DECL_THREADSAFE_ISUPPORTS
26 NS_DECL_NSITOKENPASSWORDDIALOGS
27 NS_DECL_NSICERTIFICATEDIALOGS
28 nsNSSDialogs();
30 nsresult Init();
32 protected:
33 virtual ~nsNSSDialogs();
34 nsCOMPtr<nsIStringBundle> mPIPStringBundle;
37 #endif // nsNSSDialogs_h