| Index: net/base/host_mapping_rules.cc
|
| diff --git a/net/base/host_mapping_rules.cc b/net/base/host_mapping_rules.cc
|
| index cd82f513286ef0fda241f2263e86043a5a2be117..6ae475458b0203d2f462b93fd17b748da3d06375 100644
|
| --- a/net/base/host_mapping_rules.cc
|
| +++ b/net/base/host_mapping_rules.cc
|
| @@ -67,7 +67,7 @@ bool HostMappingRules::RewriteHost(HostPortPair* host_port) const {
|
|
|
| bool HostMappingRules::AddRuleFromString(const std::string& rule_string) {
|
| std::string trimmed;
|
| - TrimWhitespaceASCII(rule_string, TRIM_ALL, &trimmed);
|
| + base::TrimWhitespaceASCII(rule_string, base::TRIM_ALL, &trimmed);
|
| std::vector<std::string> parts;
|
| base::SplitString(trimmed, ' ', &parts);
|
|
|
|
|