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

Unified Diff: net/quic/platform/api/quic_ip_address.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/platform/api/quic_export.h ('k') | net/quic/platform/api/quic_socket_address.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/platform/api/quic_ip_address.h
diff --git a/net/quic/platform/api/quic_ip_address.h b/net/quic/platform/api/quic_ip_address.h
index d050637b2a71d47533b2ab0e6dd31b5a9be6d66a..9b10e8efe90d12ded89a338328562414c3662fee 100644
--- a/net/quic/platform/api/quic_ip_address.h
+++ b/net/quic/platform/api/quic_ip_address.h
@@ -7,11 +7,12 @@
#include <string>
+#include "net/quic/platform/api/quic_export.h"
#include "net/quic/platform/impl/quic_ip_address_impl.h"
namespace net {
-class NET_EXPORT_PRIVATE QuicIpAddress {
+class QUIC_EXPORT_PRIVATE QuicIpAddress {
// A class representing an IPv4 or IPv6 address in QUIC. The actual
// implementation (platform dependent) of an IP address is in
// QuicIpAddressImpl.
@@ -26,10 +27,10 @@ class NET_EXPORT_PRIVATE QuicIpAddress {
explicit QuicIpAddress(const QuicIpAddressImpl& impl);
QuicIpAddress& operator=(const QuicIpAddress& other) = default;
QuicIpAddress& operator=(QuicIpAddress&& other) = default;
- NET_EXPORT_PRIVATE friend bool operator==(QuicIpAddress lhs,
- QuicIpAddress rhs);
- NET_EXPORT_PRIVATE friend bool operator!=(QuicIpAddress lhs,
- QuicIpAddress rhs);
+ QUIC_EXPORT_PRIVATE friend bool operator==(QuicIpAddress lhs,
+ QuicIpAddress rhs);
+ QUIC_EXPORT_PRIVATE friend bool operator!=(QuicIpAddress lhs,
+ QuicIpAddress rhs);
bool IsInitialized() const;
IpAddressFamily address_family() const;
« no previous file with comments | « net/quic/platform/api/quic_export.h ('k') | net/quic/platform/api/quic_socket_address.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698