Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Side by Side Diff: net/cert/cert_database.h

Issue 18121007: *WIP* Store NSS slots per profile. Move keygen to chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cert manager basics working Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/base/keygen_handler_unittest.cc ('k') | net/cert/cert_database_nss.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NET_CERT_CERT_DATABASE_H_ 5 #ifndef NET_CERT_CERT_DATABASE_H_
6 #define NET_CERT_CERT_DATABASE_H_ 6 #define NET_CERT_CERT_DATABASE_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
11 #include "net/base/net_export.h" 11 #include "net/base/net_export.h"
12 #include "net/cert/x509_certificate.h" 12 #include "net/cert/x509_certificate.h"
13 13
14 template <typename T> struct DefaultSingletonTraits; 14 template <typename T> struct DefaultSingletonTraits;
15 template <class ObserverType> class ObserverListThreadSafe; 15 template <class ObserverType> class ObserverListThreadSafe;
16 16
17 namespace net { 17 namespace net {
18 18
19 class NSSCertDatabase;
20
19 // This class provides cross-platform functions to verify and add user 21 // This class provides cross-platform functions to verify and add user
20 // certificates, and to observe changes to the underlying certificate stores. 22 // certificates, and to observe changes to the underlying certificate stores.
21 23
22 // TODO(gauravsh): This class could be augmented with methods 24 // TODO(gauravsh): This class could be augmented with methods
23 // for all operations that manipulate the underlying system 25 // for all operations that manipulate the underlying system
24 // certificate store. 26 // certificate store.
25 27
26 class NET_EXPORT CertDatabase { 28 class NET_EXPORT CertDatabase {
27 public: 29 public:
28 // A CertDatabase::Observer will be notified on certificate database changes. 30 // A CertDatabase::Observer will be notified on certificate database changes.
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 CertDatabase(); 86 CertDatabase();
85 ~CertDatabase(); 87 ~CertDatabase();
86 88
87 // Broadcasts notifications to all registered observers. 89 // Broadcasts notifications to all registered observers.
88 void NotifyObserversOfCertAdded(const X509Certificate* cert); 90 void NotifyObserversOfCertAdded(const X509Certificate* cert);
89 void NotifyObserversOfCertRemoved(const X509Certificate* cert); 91 void NotifyObserversOfCertRemoved(const X509Certificate* cert);
90 void NotifyObserversOfCertTrustChanged(const X509Certificate* cert); 92 void NotifyObserversOfCertTrustChanged(const X509Certificate* cert);
91 93
92 const scoped_refptr<ObserverListThreadSafe<Observer> > observer_list_; 94 const scoped_refptr<ObserverListThreadSafe<Observer> > observer_list_;
93 95
94 #if defined(USE_NSS) || (defined(OS_MACOSX) && !defined(OS_IOS)) 96 #if defined(USE_NSS)
97 friend class NSSCertDatabase;
98 #elif (defined(OS_MACOSX) && !defined(OS_IOS))
95 class Notifier; 99 class Notifier;
96 friend class Notifier; 100 friend class Notifier;
97 scoped_ptr<Notifier> notifier_; 101 scoped_ptr<Notifier> notifier_;
98 #endif 102 #endif
99 103
100 DISALLOW_COPY_AND_ASSIGN(CertDatabase); 104 DISALLOW_COPY_AND_ASSIGN(CertDatabase);
101 }; 105 };
102 106
103 } // namespace net 107 } // namespace net
104 108
105 #endif // NET_CERT_CERT_DATABASE_H_ 109 #endif // NET_CERT_CERT_DATABASE_H_
OLDNEW
« no previous file with comments | « net/base/keygen_handler_unittest.cc ('k') | net/cert/cert_database_nss.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698