fix pointer usage

This commit is contained in:
Robo 2015-12-10 00:46:03 +05:30
parent 461ee49988
commit 658accab94
9 changed files with 150 additions and 151 deletions

View file

@ -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;
}