summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/public/platform/modules/installedapp/related_application.mojom
blob: be3d390356fd17ddf04aac2f4a6dc1326d356ec5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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.

[JavaPackage="org.chromium.installedapp.mojom"]
module blink.mojom;

// Represents a system application related to a particular web app.
// See: https://www.w3.org/TR/appmanifest/#dfn-application-object
struct RelatedApplication {
  string platform;
  // TODO(mgiuca): Change to url.mojom.Url (requires changing
  // WebRelatedApplication as well).
  string? url;
  string? id;
};