| Index: net/tools/flip_server/mem_cache.cc
 | 
| diff --git a/net/tools/flip_server/mem_cache.cc b/net/tools/flip_server/mem_cache.cc
 | 
| index 521f56cbf7194b62fa3573f114efaeb882952550..b280b98be0931afacf92353f41f06d9e31c8f79a 100644
 | 
| --- a/net/tools/flip_server/mem_cache.cc
 | 
| +++ b/net/tools/flip_server/mem_cache.cc
 | 
| @@ -204,7 +204,7 @@ void MemoryCache::ReadAndStoreFileContents(const char* filename) {
 | 
|  
 | 
|  FileData* MemoryCache::GetFileData(const std::string& filename) {
 | 
|    Files::iterator fi = files_.end();
 | 
| -  if (EndsWith(filename, ".html", true)) {
 | 
| +  if (base::EndsWith(filename, ".html", true)) {
 | 
|      fi = files_.find(filename.substr(0, filename.size() - 5) + ".http");
 | 
|    }
 | 
|    if (fi == files_.end())
 | 
| 
 |