fix pointer usage
This commit is contained in:
parent
461ee49988
commit
658accab94
9 changed files with 150 additions and 151 deletions
|
@ -250,7 +250,7 @@ URLPattern::ParseResult URLPattern::Parse(const std::string& pattern) {
|
|||
host_components.erase(host_components.begin(),
|
||||
host_components.begin() + 1);
|
||||
}
|
||||
host_ = JoinString(host_components, ".");
|
||||
host_ = base::JoinString(host_components, ".");
|
||||
|
||||
path_start_pos = host_end_pos;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue