| Index: chrome/common/extensions/url_pattern.cc
|
| diff --git a/chrome/common/extensions/url_pattern.cc b/chrome/common/extensions/url_pattern.cc
|
| index 62459a3aedfc5f6272b131effcd5122edadb7422..aa7e25250a73fad3a606d53e3be872a848d25567 100644
|
| --- a/chrome/common/extensions/url_pattern.cc
|
| +++ b/chrome/common/extensions/url_pattern.cc
|
| @@ -112,7 +112,7 @@ bool URLPattern::Parse(const std::string& pattern) {
|
|
|
| // The first component can optionally be '*' to match all subdomains.
|
| std::vector<std::string> host_components;
|
| - SplitString(host_, '.', &host_components);
|
| + base::SplitString(host_, '.', &host_components);
|
| if (host_components[0] == "*") {
|
| match_subdomains_ = true;
|
| host_components.erase(host_components.begin(),
|
|
|