diff options
Diffstat (limited to 'net/proxy/proxy_config_service.h')
-rw-r--r-- | net/proxy/proxy_config_service.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/proxy/proxy_config_service.h b/net/proxy/proxy_config_service.h index f194ca0..6ec3334 100644 --- a/net/proxy/proxy_config_service.h +++ b/net/proxy/proxy_config_service.h @@ -6,12 +6,14 @@ #define NET_PROXY_PROXY_CONFIG_SERVICE_H_ #pragma once +#include "net/base/net_export.h" + namespace net { class ProxyConfig; // Service for watching when the proxy settings have changed. -class ProxyConfigService { +class NET_EXPORT ProxyConfigService { public: // Indicates whether proxy configuration is valid, and if not, why. enum ConfigAvailability { @@ -24,7 +26,7 @@ class ProxyConfigService { }; // Observer for being notified when the proxy settings have changed. - class Observer { + class NET_EXPORT Observer { public: virtual ~Observer() {} // Notification callback that should be invoked by ProxyConfigService |