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

Unified Diff: net/base/cert_database.h

Issue 6969077: net: Add NET_API to net/base (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: net/base/cert_database.h
===================================================================
--- net/base/cert_database.h (revision 85332)
+++ net/base/cert_database.h (working copy)
@@ -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 @@
// 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 @@
// 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 @@
};
// Stores per-certificate error codes for import failures.
- struct ImportCertFailure {
+ struct NET_API ImportCertFailure {
public:
ImportCertFailure(X509Certificate* cert, int err);
~ImportCertFailure();

Powered by Google App Engine
This is Rietveld 408576698