| // Copyright 2017 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://wicg.github.io/background-fetch/#background-fetch-registration |
| |
| [ |
| Exposed=(Window,Worker), |
| RuntimeEnabled=BackgroundFetch |
| ] interface BackgroundFetchRegistration { |
| readonly attribute DOMString tag; |
| readonly attribute FrozenArray<IconDefinition> icons; |
| readonly attribute long totalDownloadSize; |
| readonly attribute DOMString title; |
| // TODO(crbug.com/699957): Implement the `activeFetches` attribute. |
| |
| [CallWith=ScriptState] Promise<bool> abort(); |
| }; |