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

Unified Diff: net/quic/core/crypto/proof_verifier.h

Issue 2561893002: Add QUIC_EXPORT macros (Closed)
Patch Set: More Created 4 years 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
« no previous file with comments | « net/quic/core/crypto/proof_source.h ('k') | net/quic/core/crypto/properties_based_quic_server_info.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/crypto/proof_verifier.h
diff --git a/net/quic/core/crypto/proof_verifier.h b/net/quic/core/crypto/proof_verifier.h
index c597cf0b0bb8ffb73de99e6b124f1b6cd73cfcb0..fdde1598e3ae6d50c10694134e499b266dcffaa9 100644
--- a/net/quic/core/crypto/proof_verifier.h
+++ b/net/quic/core/crypto/proof_verifier.h
@@ -9,16 +9,16 @@
#include <string>
#include <vector>
-#include "net/base/net_export.h"
#include "net/quic/core/quic_packets.h"
#include "net/quic/core/quic_types.h"
+#include "net/quic/platform/api/quic_export.h"
namespace net {
// ProofVerifyDetails is an abstract class that acts as a container for any
// implementation specific details that a ProofVerifier wishes to return. These
// details are saved in the CachedState for the origin in question.
-class NET_EXPORT_PRIVATE ProofVerifyDetails {
+class QUIC_EXPORT_PRIVATE ProofVerifyDetails {
public:
virtual ~ProofVerifyDetails() {}
@@ -29,14 +29,14 @@ class NET_EXPORT_PRIVATE ProofVerifyDetails {
// ProofVerifyContext is an abstract class that acts as a container for any
// implementation specific context that a ProofVerifier needs.
-class NET_EXPORT_PRIVATE ProofVerifyContext {
+class QUIC_EXPORT_PRIVATE ProofVerifyContext {
public:
virtual ~ProofVerifyContext() {}
};
// ProofVerifierCallback provides a generic mechanism for a ProofVerifier to
// call back after an asynchronous verification.
-class NET_EXPORT_PRIVATE ProofVerifierCallback {
+class QUIC_EXPORT_PRIVATE ProofVerifierCallback {
public:
virtual ~ProofVerifierCallback() {}
@@ -53,7 +53,7 @@ class NET_EXPORT_PRIVATE ProofVerifierCallback {
// A ProofVerifier checks the signature on a server config, and the certificate
// chain that backs the public key.
-class NET_EXPORT_PRIVATE ProofVerifier {
+class QUIC_EXPORT_PRIVATE ProofVerifier {
public:
virtual ~ProofVerifier() {}
« no previous file with comments | « net/quic/core/crypto/proof_source.h ('k') | net/quic/core/crypto/properties_based_quic_server_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698