| Index: net/socket_stream/socket_stream.h
|
| ===================================================================
|
| --- net/socket_stream/socket_stream.h (revision 95949)
|
| +++ net/socket_stream/socket_stream.h (working copy)
|
| @@ -18,7 +18,7 @@
|
| #include "net/base/address_list.h"
|
| #include "net/base/completion_callback.h"
|
| #include "net/base/io_buffer.h"
|
| -#include "net/base/net_api.h"
|
| +#include "net/base/net_export.h"
|
| #include "net/base/net_log.h"
|
| #include "net/base/net_errors.h"
|
| #include "net/base/ssl_config_service.h"
|
| @@ -46,7 +46,8 @@
|
| // authentication identity for proxy URL first. If server requires proxy
|
| // authentication, it will try authentication identity for realm that server
|
| // requests.
|
| -class NET_API SocketStream : public base::RefCountedThreadSafe<SocketStream> {
|
| +class NET_EXPORT SocketStream
|
| + : public base::RefCountedThreadSafe<SocketStream> {
|
| public:
|
| // Derive from this class and add your own data members to associate extra
|
| // information with a SocketStream. Use GetUserData(key) and
|
| @@ -57,7 +58,7 @@
|
| virtual ~UserData() {}
|
| };
|
|
|
| - class NET_API Delegate {
|
| + class NET_EXPORT Delegate {
|
| public:
|
| virtual ~Delegate() {}
|
|
|
|
|