// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
module crosapi.mojom;
import "url/mojom/url.mojom";
// MediaApp is a set of interfaces needed by the media_app for special powers.
[Stable, Uuid="0a0ba748-dffe-44fd-b974-8d7285436e81"]
interface MediaApp {
// Submit an HTML form and open in a new tab.
SubmitForm@0(
url.mojom.Url url,
array<int8> payload,
string header
) => ();
};