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

Unified Diff: net/base/cert_database.h

Issue 7529043: Rename NET_API to NET_EXPORT, and rename NET_TEST to NET_EXPORT_PRIVATE. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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 95949)
+++ net/base/cert_database.h (working copy)
@@ -13,7 +13,7 @@
#include "base/memory/ref_counted.h"
#include "base/string16.h"
#include "net/base/cert_type.h"
-#include "net/base/net_api.h"
+#include "net/base/net_export.h"
namespace net {
@@ -30,7 +30,7 @@
// for all operations that manipulate the underlying system
// certificate store.
-class NET_API CertDatabase {
+class NET_EXPORT CertDatabase {
public:
// A CertDatabase::Observer will be notified on certificate database changes.
@@ -38,7 +38,7 @@
// a certificate is changed. Observers can register themselves
// via CertDatabase::AddObserver, and can un-register with
// CertDatabase::RemoveObserver.
- class NET_API Observer {
+ class NET_EXPORT Observer {
public:
virtual ~Observer() {}
@@ -58,7 +58,7 @@
};
// Stores per-certificate error codes for import failures.
- struct NET_API ImportCertFailure {
+ struct NET_EXPORT ImportCertFailure {
public:
ImportCertFailure(X509Certificate* cert, int err);
~ImportCertFailure();
« no previous file with comments | « net/base/capturing_net_log.h ('k') | net/base/cert_verifier.h » ('j') | net/base/net_export.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698