| Index: components/omnibox/url_prefix.cc
 | 
| diff --git a/components/omnibox/url_prefix.cc b/components/omnibox/url_prefix.cc
 | 
| index be5a5ef40e19123a14d3a0a41329af2062d4dbcf..b1fdcdb7e77698c452e6f339d437825201bc02c5 100644
 | 
| --- a/components/omnibox/url_prefix.cc
 | 
| +++ b/components/omnibox/url_prefix.cc
 | 
| @@ -71,7 +71,7 @@ const URLPrefix* URLPrefix::BestURLPrefix(const base::string16& text,
 | 
|  bool URLPrefix::PrefixMatch(const URLPrefix& prefix,
 | 
|                              const base::string16& text,
 | 
|                              const base::string16& prefix_suffix) {
 | 
| -  return StartsWith(text, prefix.prefix + prefix_suffix, false);
 | 
| +  return base::StartsWith(text, prefix.prefix + prefix_suffix, false);
 | 
|  }
 | 
|  
 | 
|  // static
 | 
| 
 |