| Index: net/http/http_auth_cache.cc
 | 
| diff --git a/net/http/http_auth_cache.cc b/net/http/http_auth_cache.cc
 | 
| index 51f9035cb08e0b6e173357f1e18788428ea6f7a2..106e1ec248141699cfca1a4b4995639b85927e6c 100644
 | 
| --- a/net/http/http_auth_cache.cc
 | 
| +++ b/net/http/http_auth_cache.cc
 | 
| @@ -37,7 +37,7 @@ void CheckPathIsValid(const std::string& path) {
 | 
|  bool IsEnclosingPath(const std::string& container, const std::string& path) {
 | 
|    DCHECK(container.empty() || *(container.end() - 1) == '/');
 | 
|    return ((container.empty() && path.empty()) ||
 | 
| -          (!container.empty() && StartsWithASCII(path, container, true)));
 | 
| +          (!container.empty() && base::StartsWithASCII(path, container, true)));
 | 
|  }
 | 
|  
 | 
|  // Debug helper to check that |origin| arguments are properly formed.
 | 
| 
 |