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

Unified Diff: net/http/http_cache.h

Issue 7529043: Rename NET_API to NET_EXPORT, and rename NET_TEST to NET_EXPORT_PRIVATE. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 months 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
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

Powered by Google App Engine
This is Rietveld 408576698