// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
module blink.mojom;
// Indicates the service worker fetch handler can be skipped.
// Experimental feature. Not followed by the spec.
//
// These values are persisted to logs. Entries should not be renumbered and
// numeric values should never be reused.
enum ServiceWorkerFetchHandlerType {
kNoHandler = 0,
kNotSkippable = 1,
kEmptyFetchHandler = 2,
};