| Index: android_webview/native/android_protocol_handler.cc
 | 
| diff --git a/android_webview/native/android_protocol_handler.cc b/android_webview/native/android_protocol_handler.cc
 | 
| index c80d9bd41ae0e47e05f67d2cd4420dc589f07e27..aaadb14cc2bffdf3007ce0712152fcd716a6ca5d 100644
 | 
| --- a/android_webview/native/android_protocol_handler.cc
 | 
| +++ b/android_webview/native/android_protocol_handler.cc
 | 
| @@ -252,8 +252,8 @@ bool AssetFileRequestInterceptor::ShouldHandleRequest(
 | 
|      return false;
 | 
|  
 | 
|    const std::string& url = request->url().spec();
 | 
| -  if (!StartsWithASCII(url, asset_prefix_, /*case_sensitive=*/ true) &&
 | 
| -      !StartsWithASCII(url, resource_prefix_, /*case_sensitive=*/ true)) {
 | 
| +  if (!base::StartsWithASCII(url, asset_prefix_, /*case_sensitive=*/ true) &&
 | 
| +      !base::StartsWithASCII(url, resource_prefix_, /*case_sensitive=*/ true)) {
 | 
|      return false;
 | 
|    }
 | 
|  
 | 
| 
 |