blob: 8869c228485b743f19ad43509bb9344f2059e6f8 [file] [log] [blame]
// Copyright 2019 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://github.com/rknoll/content-index
enum ContentCategory {
"",
"homepage",
"article",
"video",
"audio",
};
dictionary ContentDescription {
required DOMString id;
required DOMString title;
required DOMString description;
ContentCategory category = "";
sequence<ContentIconDefinition> icons = [];
required USVString url;
};