| Index: components/cronet/android/test/native_test_server.cc
 | 
| diff --git a/components/cronet/android/test/native_test_server.cc b/components/cronet/android/test/native_test_server.cc
 | 
| index 9003b64aa55f2c25840c659191deddb6d98fcf96..022b1c58da709e1abc6153fc76178726bb9b491a 100644
 | 
| --- a/components/cronet/android/test/native_test_server.cc
 | 
| +++ b/components/cronet/android/test/native_test_server.cc
 | 
| @@ -102,7 +102,7 @@ scoped_ptr<net::test_server::HttpResponse> NativeTestServerRequestHandler(
 | 
|      return response.Pass();
 | 
|    }
 | 
|  
 | 
| -  if (StartsWithASCII(request.relative_url, kEchoHeaderPath, true)) {
 | 
| +  if (base::StartsWithASCII(request.relative_url, kEchoHeaderPath, true)) {
 | 
|      GURL url = g_test_server->GetURL(request.relative_url);
 | 
|      auto it = request.headers.find(url.query());
 | 
|      if (it != request.headers.end()) {
 | 
| @@ -141,7 +141,7 @@ scoped_ptr<net::test_server::HttpResponse> SdchRequestHandler(
 | 
|    DCHECK(get_data_dir);
 | 
|    dir_path = dir_path.Append(FILE_PATH_LITERAL("test"));
 | 
|  
 | 
| -  if (StartsWithASCII(request.relative_url, kSdchPath, true)) {
 | 
| +  if (base::StartsWithASCII(request.relative_url, kSdchPath, true)) {
 | 
|      base::FilePath file_path = dir_path.Append("sdch/index");
 | 
|      scoped_ptr<CustomHttpResponse> response =
 | 
|          ConstructResponseBasedOnFile(file_path).Pass();
 | 
| @@ -162,7 +162,7 @@ scoped_ptr<net::test_server::HttpResponse> SdchRequestHandler(
 | 
|      return response.Pass();
 | 
|    }
 | 
|  
 | 
| -  if (StartsWithASCII(request.relative_url, kSdchTestPath, true)) {
 | 
| +  if (base::StartsWithASCII(request.relative_url, kSdchTestPath, true)) {
 | 
|      auto avail_dictionary_header = request.headers.find("Avail-Dictionary");
 | 
|      if (avail_dictionary_header != request.headers.end()) {
 | 
|        base::FilePath file_path = dir_path.Append(
 | 
| 
 |