diff options
author | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-18 18:29:36 +0000 |
---|---|---|
committer | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-18 18:29:36 +0000 |
commit | 13677b86fc97aeab327e476c7de42bc777a54ee4 (patch) | |
tree | 5e2682e91c0d09d63a6a54e36d9996fef5528e8d /net/base/cert_database.h | |
parent | d929a9dfff856658662a962fd4dabed66d1e0b2f (diff) | |
download | chromium_src-13677b86fc97aeab327e476c7de42bc777a54ee4.zip chromium_src-13677b86fc97aeab327e476c7de42bc777a54ee4.tar.gz chromium_src-13677b86fc97aeab327e476c7de42bc777a54ee4.tar.bz2 |
net: Add NET_API to net/base
BUG=76997
TEST=NONE
Review URL: http://codereview.chromium.org/6969077
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@85785 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/base/cert_database.h')
-rw-r--r-- | net/base/cert_database.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/net/base/cert_database.h b/net/base/cert_database.h index 0fadb61..6c9b008 100644 --- a/net/base/cert_database.h +++ b/net/base/cert_database.h @@ -13,6 +13,7 @@ #include "base/memory/ref_counted.h" #include "base/string16.h" #include "net/base/cert_type.h" +#include "net/base/net_api.h" namespace net { @@ -29,7 +30,7 @@ typedef std::vector<scoped_refptr<X509Certificate> > CertificateList; // for all operations that manipulate the underlying system // certificate store. -class CertDatabase { +class NET_API CertDatabase { public: // A CertDatabase::Observer will be notified on certificate database changes. @@ -37,7 +38,7 @@ class CertDatabase { // a certificate is changed. Observers can register themselves // via CertDatabase::AddObserver, and can un-register with // CertDatabase::RemoveObserver. - class Observer { + class NET_API Observer { public: virtual ~Observer() {} @@ -57,7 +58,7 @@ class CertDatabase { }; // Stores per-certificate error codes for import failures. - struct ImportCertFailure { + struct NET_API ImportCertFailure { public: ImportCertFailure(X509Certificate* cert, int err); ~ImportCertFailure(); |