summaryrefslogtreecommitdiffstats
path: root/net/http/http_alternate_protocols.h
diff options
context:
space:
mode:
Diffstat (limited to 'net/http/http_alternate_protocols.h')
-rw-r--r--net/http/http_alternate_protocols.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/http/http_alternate_protocols.h b/net/http/http_alternate_protocols.h
index 5452d06..3e10e08 100644
--- a/net/http/http_alternate_protocols.h
+++ b/net/http/http_alternate_protocols.h
@@ -16,11 +16,11 @@
#include "base/basictypes.h"
#include "net/base/host_port_pair.h"
-#include "net/base/net_api.h"
+#include "net/base/net_export.h"
namespace net {
-class NET_API HttpAlternateProtocols {
+class NET_EXPORT HttpAlternateProtocols {
public:
enum Protocol {
NPN_SPDY_1,
@@ -30,7 +30,7 @@ class NET_API HttpAlternateProtocols {
UNINITIALIZED,
};
- struct NET_API PortProtocolPair {
+ struct NET_EXPORT PortProtocolPair {
bool Equals(const PortProtocolPair& other) const {
return port == other.port && protocol == other.protocol;
}