Index: net/base/transport_security_state.h |
=================================================================== |
--- net/base/transport_security_state.h (revision 95949) |
+++ net/base/transport_security_state.h (working copy) |
@@ -14,7 +14,7 @@ |
#include "base/gtest_prod_util.h" |
#include "base/memory/ref_counted.h" |
#include "base/time.h" |
-#include "net/base/net_api.h" |
+#include "net/base/net_export.h" |
#include "net/base/x509_cert_types.h" |
namespace net { |
@@ -24,7 +24,7 @@ |
// Tracks which hosts have enabled *-Transport-Security. This object manages |
// the in-memory store. A separate object must register itself with this object |
// in order to persist the state to disk. |
-class NET_API TransportSecurityState : |
+class NET_EXPORT TransportSecurityState : |
public base::RefCountedThreadSafe<TransportSecurityState> { |
public: |
// If non-empty, |hsts_hosts| is a JSON-formatted string to treat as if it |
@@ -33,7 +33,7 @@ |
explicit TransportSecurityState(const std::string& hsts_hosts); |
// A DomainState is the information that we persist about a given domain. |
- struct NET_API DomainState { |
+ struct NET_EXPORT DomainState { |
enum Mode { |
// Strict mode implies: |
// * We generate internal redirects from HTTP -> HTTPS. |