| Index: chrome/browser/supervised_user/supervised_user_url_filter.cc
 | 
| diff --git a/chrome/browser/supervised_user/supervised_user_url_filter.cc b/chrome/browser/supervised_user/supervised_user_url_filter.cc
 | 
| index ba513d926bd19b1cd59d199f1858c88e6ee7a29e..b1dad56441cf29e80342b49848803062988140ca 100644
 | 
| --- a/chrome/browser/supervised_user/supervised_user_url_filter.cc
 | 
| +++ b/chrome/browser/supervised_user/supervised_user_url_filter.cc
 | 
| @@ -250,7 +250,7 @@ bool SupervisedUserURLFilter::HostMatchesPattern(const std::string& host,
 | 
|      trimmed_host.erase(trimmed_host.length() - (registry_length + 1));
 | 
|    }
 | 
|  
 | 
| -  if (base::StartsWithASCII(trimmed_pattern, "*.", true)) {
 | 
| +  if (base::StartsWith(trimmed_pattern, "*.", base::CompareCase::SENSITIVE)) {
 | 
|      trimmed_pattern.erase(0, 2);
 | 
|  
 | 
|      // The remaining pattern should be non-empty, and it should not contain
 | 
| 
 |