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

Unified Diff: net/quic/platform/api/quic_socket_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_ip_address.h ('k') | net/quic/platform/impl/quic_chromium_clock.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/platform/api/quic_socket_address.h
diff --git a/net/quic/platform/api/quic_socket_address.h b/net/quic/platform/api/quic_socket_address.h
index d7cefc967214a5411bedad3611db4acd49c1047c..e950e40928d0ee31bdb64cc034c618dd7c8efba4 100644
--- a/net/quic/platform/api/quic_socket_address.h
+++ b/net/quic/platform/api/quic_socket_address.h
@@ -5,12 +5,13 @@
#ifndef NET_QUIC_PLATFORM_API_QUIC_SOCKET_ADDRESS_H_
#define NET_QUIC_PLATFORM_API_QUIC_SOCKET_ADDRESS_H_
+#include "net/quic/platform/api/quic_export.h"
#include "net/quic/platform/api/quic_ip_address.h"
#include "net/quic/platform/impl/quic_socket_address_impl.h"
namespace net {
-class NET_EXPORT_PRIVATE QuicSocketAddress {
+class QUIC_EXPORT_PRIVATE QuicSocketAddress {
// A class representing a socket endpoint address (i.e., IP address plus a
// port) in QUIC. The actual implementation (platform dependent) of a socket
// address is in QuicSocketAddressImpl.
@@ -23,10 +24,10 @@ class NET_EXPORT_PRIVATE QuicSocketAddress {
QuicSocketAddress(const QuicSocketAddress& other) = default;
QuicSocketAddress& operator=(const QuicSocketAddress& other) = default;
QuicSocketAddress& operator=(QuicSocketAddress&& other) = default;
- NET_EXPORT_PRIVATE friend bool operator==(QuicSocketAddress lhs,
- QuicSocketAddress rhs);
- NET_EXPORT_PRIVATE friend bool operator!=(QuicSocketAddress lhs,
- QuicSocketAddress rhs);
+ QUIC_EXPORT_PRIVATE friend bool operator==(QuicSocketAddress lhs,
+ QuicSocketAddress rhs);
+ QUIC_EXPORT_PRIVATE friend bool operator!=(QuicSocketAddress lhs,
+ QuicSocketAddress rhs);
bool IsInitialized() const;
std::string ToString() const;
« no previous file with comments | « net/quic/platform/api/quic_ip_address.h ('k') | net/quic/platform/impl/quic_chromium_clock.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698