| // Copyright 2014 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| // https://slightlyoff.github.io/ServiceWorker/spec/service_worker/index.html#foreign-fetch-event-section |
| [ |
| Constructor(DOMString type, ForeignFetchEventInit eventInitDict), |
| ConstructorCallWith=ScriptState, |
| Exposed=ServiceWorker, |
| RuntimeEnabled=ForeignFetch, |
| ] interface ForeignFetchEvent : ExtendableEvent { |
| [SameObject] readonly attribute Request request; |
| readonly attribute USVString origin; |
| |
| [CallWith=ScriptState, RaisesException] void respondWith(Promise<ForeignFetchResponse> r); |
| }; |