~ubuntu-branches/ubuntu/lucid/seamonkey/lucid-security

« back to all changes in this revision

Viewing changes to security/manager/ssl/src/nsNSSCertificate.h

  • Committer: Bazaar Package Importer
  • Author(s): Fabien Tassin
  • Date: 2008-07-29 21:29:02 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20080729212902-spm9kpvchp9udwbw
Tags: 1.1.11+nobinonly-0ubuntu1
* New security upstream release: 1.1.11 (LP: #218534)
  Fixes USN-602-1, USN-619-1, USN-623-1 and USN-629-1
* Refresh diverged patch:
  - update debian/patches/80_security_build.patch
* Fix FTBFS with missing -lfontconfig
  - add debian/patches/11_fix_ftbfs_with_fontconfig.patch
  - update debian/patches/series
* Build with default gcc (hardy: 4.2, intrepid: 4.3)
  - update debian/rules
  - update debian/control

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
 
43
43
#include "nsIX509Cert.h"
44
44
#include "nsIX509Cert3.h"
 
45
#include "nsIX509Cert18Branch.h"
45
46
#include "nsIX509CertDB.h"
46
47
#include "nsIASN1Object.h"
47
48
#include "nsISMimeCert.h"
55
56
/* Certificate */
56
57
class nsNSSCertificate : public nsIX509Cert,
57
58
                         public nsIX509Cert3,
 
59
                         public nsIX509Cert18Branch,
58
60
                         public nsISMimeCert,
59
61
                         public nsNSSShutDownObject
60
62
{
62
64
  NS_DECL_ISUPPORTS
63
65
  NS_DECL_NSIX509CERT
64
66
  NS_DECL_NSIX509CERT3
 
67
  NS_DECL_NSIX509CERT18BRANCH
65
68
  NS_DECL_NSISMIMECERT
66
69
 
67
70
  nsNSSCertificate(CERTCertificate *cert);