summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/background_fetch/background_fetch_update_ui_event.idl
blob: ab7b6e5eb61e2b289c68f6af6bb3febdc1a3a725 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2018 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-update-ui-event

[
    Constructor(DOMString type, BackgroundFetchEventInit init),
    Exposed=ServiceWorker,
    RuntimeEnabled=BackgroundFetch
] interface BackgroundFetchUpdateUIEvent : BackgroundFetchEvent {
    [CallWith=ScriptState] Promise<void> updateUI(optional BackgroundFetchUIOptions options);
};