910e62b5创建于 1月15日历史提交
// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// Explainer: https://github.com/WICG/web-app-launch/blob/main/launch_handler.md

// https://wicg.github.io/web-app-launch/#launchqueue-interface
[
    Exposed=Window,
    RuntimeEnabled=WebAppLaunchQueue
] interface LaunchQueue {
  void setConsumer(LaunchConsumer consumer);
};

// https://wicg.github.io/web-app-launch/#launchconsumer-function
callback LaunchConsumer = void(LaunchParams params);