diff options
author | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-19 21:23:00 +0000 |
---|---|---|
committer | rvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-19 21:23:00 +0000 |
commit | f4ffb7a7159a9cc23ca8c634d764865ed208a5f2 (patch) | |
tree | 481139baefa1715a50aee942fb7822aea0033e2f /net/proxy/proxy_config.h | |
parent | cfc81e114d5fc3de7761537350c4e015ab894700 (diff) | |
download | chromium_src-f4ffb7a7159a9cc23ca8c634d764865ed208a5f2.zip chromium_src-f4ffb7a7159a9cc23ca8c634d764865ed208a5f2.tar.gz chromium_src-f4ffb7a7159a9cc23ca8c634d764865ed208a5f2.tar.bz2 |
net: Add net_api to the proxy code.
BUG=76997
TEST=NONE
Review URL: http://codereview.chromium.org/7011055
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@85974 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/proxy/proxy_config.h')
-rw-r--r-- | net/proxy/proxy_config.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/proxy/proxy_config.h b/net/proxy/proxy_config.h index dc0fd71..be5e2fb 100644 --- a/net/proxy/proxy_config.h +++ b/net/proxy/proxy_config.h @@ -9,6 +9,7 @@ #include <string> #include "googleurl/src/gurl.h" +#include "net/base/net_api.h" #include "net/proxy/proxy_bypass_rules.h" #include "net/proxy/proxy_server.h" @@ -29,11 +30,11 @@ class ProxyInfo; // // For more details see: // http://www.chromium.org/developers/design-documents/proxy-settings-fallback -class ProxyConfig { +class NET_API ProxyConfig { public: // ProxyRules describes the "manual" proxy settings. // TODO(eroman): Turn this into a class. - struct ProxyRules { + struct NET_API ProxyRules { enum Type { TYPE_NO_RULES, TYPE_SINGLE_PROXY, |