| Index: content/child/service_worker/service_worker_network_provider.cc
|
| diff --git a/content/child/service_worker/service_worker_network_provider.cc b/content/child/service_worker/service_worker_network_provider.cc
|
| index 5521e4423465f67ca5160da204af02efa86d94af..364d0dcbfe4fb69e144529eddb14048c91f29250 100644
|
| --- a/content/child/service_worker/service_worker_network_provider.cc
|
| +++ b/content/child/service_worker/service_worker_network_provider.cc
|
| @@ -229,6 +229,11 @@ void ServiceWorkerNetworkProvider::SetServiceWorkerVersionId(
|
| }
|
|
|
| bool ServiceWorkerNetworkProvider::IsControlledByServiceWorker() const {
|
| + if (ServiceWorkerUtils::IsServicificationEnabled()) {
|
| + // Interception for subresource loading is not working (yet)
|
| + // when servicification is enabled.
|
| + return false;
|
| + }
|
| return context() && context()->controller();
|
| }
|
|
|
|
|