| Index: net/tools/tld_cleanup/tld_cleanup_util.cc
|
| diff --git a/net/tools/tld_cleanup/tld_cleanup_util.cc b/net/tools/tld_cleanup/tld_cleanup_util.cc
|
| index 88b6245b96dbbfa21eb58f97bbac52aa9d3c71bd..5a206e4c61afe0d7c0ebd2b2282ad00231d963ee 100644
|
| --- a/net/tools/tld_cleanup/tld_cleanup_util.cc
|
| +++ b/net/tools/tld_cleanup/tld_cleanup_util.cc
|
| @@ -115,7 +115,7 @@ NormalizeResult NormalizeRule(std::string* domain, Rule* rule) {
|
| url.append(*domain);
|
| GURL gurl(url);
|
| const std::string& spec = gurl.possibly_invalid_spec();
|
| - url_parse::Component host = gurl.parsed_for_possibly_invalid_spec().host;
|
| + url::Component host = gurl.parsed_for_possibly_invalid_spec().host;
|
| if (host.len < 0) {
|
| LOG(ERROR) << "Ignoring rule that couldn't be normalized: " << *domain;
|
| return kError;
|
|
|