| Index: third_party/WebKit/Source/platform/exported/WebURLRequest.cpp
 | 
| diff --git a/third_party/WebKit/Source/platform/exported/WebURLRequest.cpp b/third_party/WebKit/Source/platform/exported/WebURLRequest.cpp
 | 
| index e214fdd5b023b1c31f2322ddaa450bda00f1678a..b57df3abdecf03966a0666b293268ee7ad247892 100644
 | 
| --- a/third_party/WebKit/Source/platform/exported/WebURLRequest.cpp
 | 
| +++ b/third_party/WebKit/Source/platform/exported/WebURLRequest.cpp
 | 
| @@ -402,6 +402,8 @@ bool WebURLRequest::IsExternalRequest() const {
 | 
|  }
 | 
|  
 | 
|  WebURLRequest::LoadingIPCType WebURLRequest::GetLoadingIPCType() const {
 | 
| +  if (resource_request_->IsMojoIPCForced())
 | 
| +    return WebURLRequest::LoadingIPCType::kMojo;
 | 
|    if (RuntimeEnabledFeatures::loadingWithMojoEnabled())
 | 
|      return WebURLRequest::LoadingIPCType::kMojo;
 | 
|    return WebURLRequest::LoadingIPCType::kChromeIPC;
 | 
| 
 |