Backed out changeset f53842753805 (bug 1804872) for causing reftest failures on 15535...
[gecko.git] / security / manager / ssl / ContentSignatureVerifier.h
bloba10c9fe89c5f083751974d1a650992c74b6bbb8b
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=2 et sw=2 tw=80: */
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 ContentSignatureVerifier_h
8 #define ContentSignatureVerifier_h
10 #include "nsIContentSignatureVerifier.h"
11 #include "nsString.h"
13 // 45a5fe2f-c350-4b86-962d-02d5aaaa955a
14 #define NS_CONTENTSIGNATUREVERIFIER_CID \
15 { \
16 0x45a5fe2f, 0xc350, 0x4b86, { \
17 0x96, 0x2d, 0x02, 0xd5, 0xaa, 0xaa, 0x95, 0x5a \
18 } \
20 #define NS_CONTENTSIGNATUREVERIFIER_CONTRACTID \
21 "@mozilla.org/security/contentsignatureverifier;1"
23 class ContentSignatureVerifier final : public nsIContentSignatureVerifier {
24 public:
25 NS_DECL_ISUPPORTS
26 NS_DECL_NSICONTENTSIGNATUREVERIFIER
28 private:
29 ~ContentSignatureVerifier() = default;
32 #endif // ContentSignatureVerifier_h