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

Unified Diff: net/quic/core/crypto/crypto_handshake.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/crypto_framer.h ('k') | net/quic/core/crypto/crypto_handshake_message.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/crypto/crypto_handshake.h
diff --git a/net/quic/core/crypto/crypto_handshake.h b/net/quic/core/crypto/crypto_handshake.h
index 12db86e2543f93735406d2acc969fe1f14b5692e..9606fe4b51e514d088e64b4ac463dd8577e11896 100644
--- a/net/quic/core/crypto/crypto_handshake.h
+++ b/net/quic/core/crypto/crypto_handshake.h
@@ -12,8 +12,8 @@
#include <vector>
#include "base/macros.h"
-#include "net/base/net_export.h"
#include "net/quic/core/quic_packets.h"
+#include "net/quic/platform/api/quic_export.h"
namespace net {
@@ -91,7 +91,7 @@ enum HandshakeFailureReason {
static_assert(MAX_FAILURE_REASON <= 32, "failure reason out of sync");
// A CrypterPair contains the encrypter and decrypter for an encryption level.
-struct NET_EXPORT_PRIVATE CrypterPair {
+struct QUIC_EXPORT_PRIVATE CrypterPair {
CrypterPair();
~CrypterPair();
std::unique_ptr<QuicEncrypter> encrypter;
@@ -99,7 +99,7 @@ struct NET_EXPORT_PRIVATE CrypterPair {
};
// Parameters negotiated by the crypto handshake.
-struct NET_EXPORT_PRIVATE QuicCryptoNegotiatedParameters
+struct QUIC_EXPORT_PRIVATE QuicCryptoNegotiatedParameters
: public base::RefCounted<QuicCryptoNegotiatedParameters> {
// Initializes the members to 0 or empty values.
QuicCryptoNegotiatedParameters();
@@ -156,7 +156,7 @@ struct NET_EXPORT_PRIVATE QuicCryptoNegotiatedParameters
};
// QuicCryptoConfig contains common configuration between clients and servers.
-class NET_EXPORT_PRIVATE QuicCryptoConfig {
+class QUIC_EXPORT_PRIVATE QuicCryptoConfig {
public:
// kInitialLabel is a constant that is used when deriving the initial
// (non-forward secure) keys for the connection in order to tie the resulting
« no previous file with comments | « net/quic/core/crypto/crypto_framer.h ('k') | net/quic/core/crypto/crypto_handshake_message.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698