package androidx.webkit.internal; import android.webkit.ServiceWorkerClient; import android.webkit.WebResourceRequest; import android.webkit.WebResourceResponse; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import androidx.annotation.RequiresApi; import androidx.webkit.ServiceWorkerClientCompat; @RequiresApi(24) /* loaded from: classes.dex */ public class FrameworkServiceWorkerClient extends ServiceWorkerClient { private final ServiceWorkerClientCompat mImpl; public FrameworkServiceWorkerClient(@NonNull ServiceWorkerClientCompat serviceWorkerClientCompat) { this.mImpl = serviceWorkerClientCompat; } @Override // android.webkit.ServiceWorkerClient @Nullable public WebResourceResponse shouldInterceptRequest(@NonNull WebResourceRequest webResourceRequest) { return this.mImpl.shouldInterceptRequest(webResourceRequest); } }