| Index: chrome/browser/ui/webui/ntp/favicon_webui_handler.cc
 | 
| diff --git a/chrome/browser/ui/webui/ntp/favicon_webui_handler.cc b/chrome/browser/ui/webui/ntp/favicon_webui_handler.cc
 | 
| index 8f1c392c2b87f113694a6f848a7bcb68d564813c..dcb600d5ab6a3ed3095707eba2b3446dbfbde34b 100644
 | 
| --- a/chrome/browser/ui/webui/ntp/favicon_webui_handler.cc
 | 
| +++ b/chrome/browser/ui/webui/ntp/favicon_webui_handler.cc
 | 
| @@ -84,7 +84,7 @@ void FaviconWebUIHandler::HandleGetFaviconDominantColor(
 | 
|    std::string path;
 | 
|    CHECK(args->GetString(0, &path));
 | 
|    std::string prefix = "chrome://favicon/size/";
 | 
| -  DCHECK(StartsWithASCII(path, prefix, false)) << "path is " << path;
 | 
| +  DCHECK(base::StartsWithASCII(path, prefix, false)) << "path is " << path;
 | 
|    size_t slash = path.find("/", prefix.length());
 | 
|    path = path.substr(slash + 1);
 | 
|  
 | 
| 
 |