Index: net/http/http_cache.h |
=================================================================== |
--- net/http/http_cache.h (revision 95949) |
+++ net/http/http_cache.h (working copy) |
@@ -30,7 +30,7 @@ |
#include "net/base/cache_type.h" |
#include "net/base/completion_callback.h" |
#include "net/base/load_states.h" |
-#include "net/base/net_api.h" |
+#include "net/base/net_export.h" |
#include "net/http/http_transaction_factory.h" |
class GURL; |
@@ -57,9 +57,9 @@ |
class SSLConfigService; |
class ViewCacheHelper; |
-class NET_API HttpCache : public HttpTransactionFactory, |
- public base::SupportsWeakPtr<HttpCache>, |
- NON_EXPORTED_BASE(public base::NonThreadSafe) { |
+class NET_EXPORT HttpCache : public HttpTransactionFactory, |
+ public base::SupportsWeakPtr<HttpCache>, |
+ NON_EXPORTED_BASE(public base::NonThreadSafe) { |
public: |
// The cache mode of operation. |
enum Mode { |
@@ -76,7 +76,7 @@ |
}; |
// A BackendFactory creates a backend object to be used by the HttpCache. |
- class NET_API BackendFactory { |
+ class NET_EXPORT BackendFactory { |
public: |
virtual ~BackendFactory() {} |
@@ -92,7 +92,7 @@ |
}; |
// A default backend factory for the common use cases. |
- class NET_API DefaultBackend : public BackendFactory { |
+ class NET_EXPORT DefaultBackend : public BackendFactory { |
public: |
// |path| is the destination for any files used by the backend, and |
// |cache_thread| is the thread where disk operations should take place. If |