Index: net/proxy/proxy_service.h |
=================================================================== |
--- net/proxy/proxy_service.h (revision 95949) |
+++ net/proxy/proxy_service.h (working copy) |
@@ -14,7 +14,7 @@ |
#include "base/synchronization/waitable_event.h" |
#include "base/threading/non_thread_safe.h" |
#include "net/base/completion_callback.h" |
-#include "net/base/net_api.h" |
+#include "net/base/net_export.h" |
#include "net/base/net_log.h" |
#include "net/base/network_change_notifier.h" |
#include "net/proxy/proxy_config_service.h" |
@@ -37,9 +37,9 @@ |
// This class can be used to resolve the proxy server to use when loading a |
// HTTP(S) URL. It uses the given ProxyResolver to handle the actual proxy |
// resolution. See ProxyResolverV8 for example. |
-class NET_API ProxyService : public NetworkChangeNotifier::IPAddressObserver, |
- public ProxyConfigService::Observer, |
- NON_EXPORTED_BASE(public base::NonThreadSafe) { |
+class NET_EXPORT ProxyService : public NetworkChangeNotifier::IPAddressObserver, |
+ public ProxyConfigService::Observer, |
+ NON_EXPORTED_BASE(public base::NonThreadSafe) { |
public: |
// The instance takes ownership of |config_service| and |resolver|. |
// |net_log| is a possibly NULL destination to send log events to. It must |
@@ -362,7 +362,7 @@ |
}; |
// Wrapper for invoking methods on a ProxyService synchronously. |
-class NET_API SyncProxyServiceHelper |
+class NET_EXPORT SyncProxyServiceHelper |
: public base::RefCountedThreadSafe<SyncProxyServiceHelper> { |
public: |
SyncProxyServiceHelper(MessageLoop* io_message_loop, |