blob: 3b7ef66b197a1ebf83b8da83deed2abdf288ce85 [file] [log] [blame]
// 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 id;
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();
};