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

Unified Diff: net/http/http_stream_factory.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_stream_factory.h
===================================================================
--- net/http/http_stream_factory.h (revision 95949)
+++ net/http/http_stream_factory.h (working copy)
@@ -12,7 +12,7 @@
#include "base/string16.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"
class GURL;
@@ -38,12 +38,12 @@
// created, this object is the creator's handle for interacting with the
// HttpStream creation process. The request is cancelled by deleting it, after
// which no callbacks will be invoked.
-class NET_TEST HttpStreamRequest {
+class NET_EXPORT_PRIVATE HttpStreamRequest {
public:
// The HttpStreamRequest::Delegate is a set of callback methods for a
// HttpStreamRequestJob. Generally, only one of these methods will be
// called as a result of a stream request.
- class NET_TEST Delegate {
+ class NET_EXPORT_PRIVATE Delegate {
public:
virtual ~Delegate() {}
@@ -144,7 +144,7 @@
};
// The HttpStreamFactory defines an interface for creating usable HttpStreams.
-class NET_API HttpStreamFactory {
+class NET_EXPORT HttpStreamFactory {
public:
virtual ~HttpStreamFactory();

Powered by Google App Engine
This is Rietveld 408576698