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

Unified Diff: net/quic/core/crypto/channel_id.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/chacha20_poly1305_encrypter.h ('k') | net/quic/core/crypto/common_cert_set.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/crypto/channel_id.h
diff --git a/net/quic/core/crypto/channel_id.h b/net/quic/core/crypto/channel_id.h
index 670b814b3bb787a14fb20b236dfdf0cd60840cb2..3d41e538cc26ca97a675eef7b55336bf4327f26d 100644
--- a/net/quic/core/crypto/channel_id.h
+++ b/net/quic/core/crypto/channel_id.h
@@ -10,14 +10,14 @@
#include "base/macros.h"
#include "base/strings/string_piece.h"
-#include "net/base/net_export.h"
#include "net/quic/core/quic_types.h"
+#include "net/quic/platform/api/quic_export.h"
namespace net {
// ChannelIDKey is an interface that supports signing with and serializing a
// ChannelID key.
-class NET_EXPORT_PRIVATE ChannelIDKey {
+class QUIC_EXPORT_PRIVATE ChannelIDKey {
public:
virtual ~ChannelIDKey() {}
@@ -45,7 +45,7 @@ class ChannelIDSourceCallback {
// ChannelIDSource is an abstract interface by which a QUIC client can obtain
// a ChannelIDKey for a given hostname.
-class NET_EXPORT_PRIVATE ChannelIDSource {
+class QUIC_EXPORT_PRIVATE ChannelIDSource {
public:
virtual ~ChannelIDSource() {}
@@ -64,7 +64,7 @@ class NET_EXPORT_PRIVATE ChannelIDSource {
};
// ChannelIDVerifier verifies ChannelID signatures.
-class NET_EXPORT_PRIVATE ChannelIDVerifier {
+class QUIC_EXPORT_PRIVATE ChannelIDVerifier {
public:
// kContextStr is prepended to the data to be signed in order to ensure that
// a ChannelID signature cannot be used in a different context. (The
« no previous file with comments | « net/quic/core/crypto/chacha20_poly1305_encrypter.h ('k') | net/quic/core/crypto/common_cert_set.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698