/usr/include/thunderbird/nsICertificatePrincipal.h is in thunderbird-dev 1:24.4.0+build1-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 | /*
* DO NOT EDIT. THIS FILE IS GENERATED FROM /build/buildd/thunderbird-24.4.0+build1/mozilla/security/manager/ssl/public/nsICertificatePrincipal.idl
*/
#ifndef __gen_nsICertificatePrincipal_h__
#define __gen_nsICertificatePrincipal_h__
#ifndef __gen_nsISupports_h__
#include "nsISupports.h"
#endif
/* For IDL files that don't want to include root IDL files. */
#ifndef NS_NO_VTABLE
#define NS_NO_VTABLE
#endif
/* starting interface: nsICertificatePrincipal */
#define NS_ICERTIFICATEPRINCIPAL_IID_STR "7cd4af5a-64d3-44a8-9700-804a42a6109a"
#define NS_ICERTIFICATEPRINCIPAL_IID \
{0x7cd4af5a, 0x64d3, 0x44a8, \
{ 0x97, 0x00, 0x80, 0x4a, 0x42, 0xa6, 0x10, 0x9a }}
class NS_NO_VTABLE nsICertificatePrincipal : public nsISupports {
public:
NS_DECLARE_STATIC_IID_ACCESSOR(NS_ICERTIFICATEPRINCIPAL_IID)
/* readonly attribute AUTF8String fingerprint; */
NS_IMETHOD GetFingerprint(nsACString & aFingerprint) = 0;
/* readonly attribute AUTF8String prettyName; */
NS_IMETHOD GetPrettyName(nsACString & aPrettyName) = 0;
/* readonly attribute AUTF8String subjectName; */
NS_IMETHOD GetSubjectName(nsACString & aSubjectName) = 0;
/* readonly attribute nsISupports certificate; */
NS_IMETHOD GetCertificate(nsISupports * *aCertificate) = 0;
/* readonly attribute boolean hasCertificate; */
NS_IMETHOD GetHasCertificate(bool *aHasCertificate) = 0;
/* bool equals (in nsICertificatePrincipal aOther); */
NS_IMETHOD Equals(nsICertificatePrincipal *aOther, bool *_retval) = 0;
};
NS_DEFINE_STATIC_IID_ACCESSOR(nsICertificatePrincipal, NS_ICERTIFICATEPRINCIPAL_IID)
/* Use this macro when declaring classes that implement this interface. */
#define NS_DECL_NSICERTIFICATEPRINCIPAL \
NS_IMETHOD GetFingerprint(nsACString & aFingerprint); \
NS_IMETHOD GetPrettyName(nsACString & aPrettyName); \
NS_IMETHOD GetSubjectName(nsACString & aSubjectName); \
NS_IMETHOD GetCertificate(nsISupports * *aCertificate); \
NS_IMETHOD GetHasCertificate(bool *aHasCertificate); \
NS_IMETHOD Equals(nsICertificatePrincipal *aOther, bool *_retval);
/* Use this macro to declare functions that forward the behavior of this interface to another object. */
#define NS_FORWARD_NSICERTIFICATEPRINCIPAL(_to) \
NS_IMETHOD GetFingerprint(nsACString & aFingerprint) { return _to GetFingerprint(aFingerprint); } \
NS_IMETHOD GetPrettyName(nsACString & aPrettyName) { return _to GetPrettyName(aPrettyName); } \
NS_IMETHOD GetSubjectName(nsACString & aSubjectName) { return _to GetSubjectName(aSubjectName); } \
NS_IMETHOD GetCertificate(nsISupports * *aCertificate) { return _to GetCertificate(aCertificate); } \
NS_IMETHOD GetHasCertificate(bool *aHasCertificate) { return _to GetHasCertificate(aHasCertificate); } \
NS_IMETHOD Equals(nsICertificatePrincipal *aOther, bool *_retval) { return _to Equals(aOther, _retval); }
/* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
#define NS_FORWARD_SAFE_NSICERTIFICATEPRINCIPAL(_to) \
NS_IMETHOD GetFingerprint(nsACString & aFingerprint) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetFingerprint(aFingerprint); } \
NS_IMETHOD GetPrettyName(nsACString & aPrettyName) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPrettyName(aPrettyName); } \
NS_IMETHOD GetSubjectName(nsACString & aSubjectName) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSubjectName(aSubjectName); } \
NS_IMETHOD GetCertificate(nsISupports * *aCertificate) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCertificate(aCertificate); } \
NS_IMETHOD GetHasCertificate(bool *aHasCertificate) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetHasCertificate(aHasCertificate); } \
NS_IMETHOD Equals(nsICertificatePrincipal *aOther, bool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->Equals(aOther, _retval); }
#if 0
/* Use the code below as a template for the implementation class for this interface. */
/* Header file */
class nsCertificatePrincipal : public nsICertificatePrincipal
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSICERTIFICATEPRINCIPAL
nsCertificatePrincipal();
private:
~nsCertificatePrincipal();
protected:
/* additional members */
};
/* Implementation file */
NS_IMPL_ISUPPORTS1(nsCertificatePrincipal, nsICertificatePrincipal)
nsCertificatePrincipal::nsCertificatePrincipal()
{
/* member initializers and constructor code */
}
nsCertificatePrincipal::~nsCertificatePrincipal()
{
/* destructor code */
}
/* readonly attribute AUTF8String fingerprint; */
NS_IMETHODIMP nsCertificatePrincipal::GetFingerprint(nsACString & aFingerprint)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute AUTF8String prettyName; */
NS_IMETHODIMP nsCertificatePrincipal::GetPrettyName(nsACString & aPrettyName)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute AUTF8String subjectName; */
NS_IMETHODIMP nsCertificatePrincipal::GetSubjectName(nsACString & aSubjectName)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute nsISupports certificate; */
NS_IMETHODIMP nsCertificatePrincipal::GetCertificate(nsISupports * *aCertificate)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* readonly attribute boolean hasCertificate; */
NS_IMETHODIMP nsCertificatePrincipal::GetHasCertificate(bool *aHasCertificate)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* bool equals (in nsICertificatePrincipal aOther); */
NS_IMETHODIMP nsCertificatePrincipal::Equals(nsICertificatePrincipal *aOther, bool *_retval)
{
return NS_ERROR_NOT_IMPLEMENTED;
}
/* End of implementation class template. */
#endif
#endif /* __gen_nsICertificatePrincipal_h__ */
|