diff options
Diffstat (limited to 'net/proxy/proxy_resolver_null.h')
-rw-r--r-- | net/proxy/proxy_resolver_null.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/proxy/proxy_resolver_null.h b/net/proxy/proxy_resolver_null.h index b9f0b32..17276e8 100644 --- a/net/proxy/proxy_resolver_null.h +++ b/net/proxy/proxy_resolver_null.h @@ -13,12 +13,12 @@ namespace net { class ProxyResolverNull : public ProxyResolver { public: virtual int GetProxyConfig(ProxyConfig* config) { - return ERR_FAILED; + return ERR_NOT_IMPLEMENTED; } virtual int GetProxyForURL(const std::string& query_url, const std::string& pac_url, ProxyInfo* results) { - return ERR_FAILED; + return ERR_NOT_IMPLEMENTED; } }; |