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

Unified Diff: net/quic/core/crypto/proof_source.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/p256_key_exchange.h ('k') | net/quic/core/crypto/proof_verifier.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/crypto/proof_source.h
diff --git a/net/quic/core/crypto/proof_source.h b/net/quic/core/crypto/proof_source.h
index 2b9a0624dc05573b78351312d028ff700fa67fc5..88bf2d391664a42d1cce945d1ba49b947909f627 100644
--- a/net/quic/core/crypto/proof_source.h
+++ b/net/quic/core/crypto/proof_source.h
@@ -10,20 +10,20 @@
#include <vector>
#include "base/memory/ref_counted.h"
-#include "net/base/net_export.h"
#include "net/quic/core/crypto/quic_crypto_proof.h"
#include "net/quic/core/quic_packets.h"
+#include "net/quic/platform/api/quic_export.h"
#include "net/quic/platform/api/quic_socket_address.h"
namespace net {
// ProofSource is an interface by which a QUIC server can obtain certificate
// chains and signatures that prove its identity.
-class NET_EXPORT_PRIVATE ProofSource {
+class QUIC_EXPORT_PRIVATE ProofSource {
public:
// Chain is a reference-counted wrapper for a std::vector of std::stringified
// certificates.
- struct NET_EXPORT_PRIVATE Chain : public base::RefCounted<Chain> {
+ struct QUIC_EXPORT_PRIVATE Chain : public base::RefCounted<Chain> {
explicit Chain(const std::vector<std::string>& certs);
const std::vector<std::string> certs;
« no previous file with comments | « net/quic/core/crypto/p256_key_exchange.h ('k') | net/quic/core/crypto/proof_verifier.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698