summaryrefslogtreecommitdiffstats
path: root/net/proxy/proxy_bypass_rules.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net/proxy/proxy_bypass_rules.cc')
-rw-r--r--net/proxy/proxy_bypass_rules.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/proxy/proxy_bypass_rules.cc b/net/proxy/proxy_bypass_rules.cc
index d80e6f1..ce018bf 100644
--- a/net/proxy/proxy_bypass_rules.cc
+++ b/net/proxy/proxy_bypass_rules.cc
@@ -38,10 +38,10 @@ class HostnamePatternRule : public ProxyBypassRules::Rule {
virtual std::string ToString() const {
std::string str;
if (!optional_scheme_.empty())
- StringAppendF(&str, "%s://", optional_scheme_.c_str());
+ base::StringAppendF(&str, "%s://", optional_scheme_.c_str());
str += hostname_pattern_;
if (optional_port_ != -1)
- StringAppendF(&str, ":%d", optional_port_);
+ base::StringAppendF(&str, ":%d", optional_port_);
return str;
}