Bug 1285537 - Create schema for the management API, r=aswan

MozReview-Commit-ID: EXmIv7TwmaK

--HG--
extra : rebase_source : 01ac96558bed9e752298557794cf60fb40c34518
extra : source : 1b7557775b6a5e2ef94fd6f257b76644794f5f75
This commit is contained in:
Bob Silverberg 2016-07-18 17:15:54 -04:00
Родитель 9069fff35f
Коммит ceb06cac74
7 изменённых файлов: 281 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,9 @@
/* -*- Mode: indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim: set sts=2 sw=2 et tw=80: */
"use strict";
extensions.registerSchemaAPI("management", (extension, context) => {
return {
management: {},
};
});

Просмотреть файл

@ -3,6 +3,7 @@ category webextension-scripts alarms chrome://extensions/content/ext-alarms.js
category webextension-scripts backgroundPage chrome://extensions/content/ext-backgroundPage.js
category webextension-scripts cookies chrome://extensions/content/ext-cookies.js
category webextension-scripts downloads chrome://extensions/content/ext-downloads.js
category webextension-scripts management chrome://extensions/content/ext-management.js
category webextension-scripts notifications chrome://extensions/content/ext-notifications.js
category webextension-scripts i18n chrome://extensions/content/ext-i18n.js
category webextension-scripts idle chrome://extensions/content/ext-idle.js
@ -22,6 +23,7 @@ category webextension-schemas extension chrome://extensions/content/schemas/exte
category webextension-schemas extension_types chrome://extensions/content/schemas/extension_types.json
category webextension-schemas i18n chrome://extensions/content/schemas/i18n.json
category webextension-schemas idle chrome://extensions/content/schemas/idle.json
category webextension-schemas management chrome://extensions/content/schemas/management.json
category webextension-schemas native_host_manifest chrome://extensions/content/schemas/native_host_manifest.json
category webextension-schemas notifications chrome://extensions/content/schemas/notifications.json
category webextension-schemas runtime chrome://extensions/content/schemas/runtime.json

Просмотреть файл

@ -8,6 +8,7 @@ toolkit.jar:
content/extensions/ext-backgroundPage.js
content/extensions/ext-cookies.js
content/extensions/ext-downloads.js
content/extensions/ext-management.js
content/extensions/ext-notifications.js
content/extensions/ext-i18n.js
content/extensions/ext-idle.js

Просмотреть файл

@ -13,6 +13,7 @@ toolkit.jar:
content/extensions/schemas/extension_types.json
content/extensions/schemas/i18n.json
content/extensions/schemas/idle.json
content/extensions/schemas/management.json
content/extensions/schemas/manifest.json
content/extensions/schemas/native_host_manifest.json
content/extensions/schemas/notifications.json

Просмотреть файл

@ -0,0 +1,247 @@
// Copyright (c) 2012 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.
[
{
"namespace": "manifest",
"types": [
{
"$extend": "Permission",
"choices": [{
"type": "string",
"enum": [
"management"
]
}]
}
]
},
{
"namespace":"management",
"description": "The <code>browser.management</code> API provides ways to manage the list of extensions that are installed and running.",
"types": [
{
"id": "IconInfo",
"description": "Information about an icon belonging to an extension.",
"type": "object",
"properties": {
"size": {
"type": "integer",
"description": "A number representing the width and height of the icon. Likely values include (but are not limited to) 128, 48, 24, and 16."
},
"url": {
"type": "string",
"description": "The URL for this icon image. To display a grayscale version of the icon (to indicate that an extension is disabled, for example), append <code>?grayscale=true</code> to the URL."
}
}
},
{
"id": "ExtensionDisabledReason",
"description": "A reason the item is disabled.",
"type": "string",
"enum": ["unknown", "permissions_increase"]
},
{
"id": "ExtensionType",
"description": "The type of this extension. Will always be 'extension'.",
"type": "string",
"enum": ["extension"]
},
{
"id": "ExtensionInstallType",
"description": "How the extension was installed. One of<br><var>development</var>: The extension was loaded unpacked in developer mode,<br><var>normal</var>: The extension was installed normally via an .xpi file,<br><var>sideload</var>: The extension was installed by other software on the machine,<br><var>other</var>: The extension was installed by other means.",
"type": "string",
"enum": ["development", "normal", "sideload", "other"]
},
{
"id": "ExtensionInfo",
"description": "Information about an installed extension.",
"type": "object",
"properties": {
"id": {
"description": "The extension's unique identifier.",
"type": "string"
},
"name": {
"description": "The name of this extension.",
"type": "string"
},
"shortName": {
"description": "A short version of the name of this extension.",
"type": "string"
},
"description": {
"description": "The description of this extension.",
"type": "string"
},
"version": {
"description": "The <a href='manifest/version'>version</a> of this extension.",
"type": "string"
},
"versionName": {
"description": "The <a href='manifest/version#version_name'>version name</a> of this extension if the manifest specified one.",
"type": "string",
"optional": true
},
"mayDisable": {
"description": "Whether this extension can be disabled or uninstalled by the user.",
"type": "boolean"
},
"enabled": {
"description": "Whether it is currently enabled or disabled.",
"type": "boolean"
},
"disabledReason": {
"description": "A reason the item is disabled.",
"$ref": "ExtensionDisabledReason",
"optional": true
},
"type": {
"description": "The type of this extension. Will always return 'extension'.",
"$ref": "ExtensionType"
},
"homepageUrl": {
"description": "The URL of the homepage of this extension.",
"type": "string",
"optional": true
},
"updateUrl": {
"description": "The update URL of this extension.",
"type": "string",
"optional": true
},
"optionsUrl": {
"description": "The url for the item's options page, if it has one.",
"type": "string"
},
"icons": {
"description": "A list of icon information. Note that this just reflects what was declared in the manifest, and the actual image at that url may be larger or smaller than what was declared, so you might consider using explicit width and height attributes on img tags referencing these images. See the <a href='manifest/icons'>manifest documentation on icons</a> for more details.",
"type": "array",
"optional": true,
"items": {
"$ref": "IconInfo"
}
},
"permissions": {
"description": "Returns a list of API based permissions.",
"type": "array",
"items" : {
"type": "string"
}
},
"hostPermissions": {
"description": "Returns a list of host based permissions.",
"type": "array",
"items" : {
"type": "string"
}
},
"installType": {
"description": "How the extension was installed.",
"$ref": "ExtensionInstallType"
}
}
}
],
"functions": [
{
"name": "getAll",
"type": "function",
"permissions": ["management"],
"unsupported": true,
"description": "Returns a list of information about installed extensions.",
"async": "callback",
"parameters": [
{
"name": "callback",
"type": "function",
"optional": true,
"parameters": [
{
"type": "array",
"name": "result",
"items": {
"$ref": "ExtensionInfo"
}
}
]
}
]
},
{
"name": "get",
"type": "function",
"permissions": ["management"],
"unsupported": true,
"description": "Returns information about the installed extension that has the given ID.",
"async": "callback",
"parameters": [
{
"name": "id",
"$ref": "manifest.ExtensionID",
"description": "The ID from an item of $(ref:management.ExtensionInfo)."
},
{
"name": "callback",
"type": "function",
"optional": true,
"parameters": [
{
"name": "result",
"$ref": "ExtensionInfo"
}
]
}
]
},
{
"name": "getSelf",
"type": "function",
"unsupported": true,
"description": "Returns information about the calling extension. Note: This function can be used without requesting the 'management' permission in the manifest.",
"async": "callback",
"parameters": [
{
"type": "function",
"name": "callback",
"optional": true,
"parameters": [
{
"name": "result",
"$ref": "ExtensionInfo"
}
]
}
]
},
{
"name": "uninstallSelf",
"type": "function",
"unsupported": true,
"description": "Uninstalls the calling extension. Note: This function can be used without requesting the 'management' permission in the manifest.",
"async": "callback",
"parameters": [
{
"type": "object",
"name": "options",
"optional": true,
"properties": {
"showConfirmDialog": {
"type": "boolean",
"optional": true,
"description": "Whether or not a confirm-uninstall dialog should prompt the user. Defaults to false."
}
}
},
{
"name": "callback",
"type": "function",
"optional": true,
"parameters": []
}
]
}
]
}
]

Просмотреть файл

@ -0,0 +1,20 @@
/* -*- Mode: indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim: set sts=2 sw=2 et tw=80: */
"use strict";
add_task(function* test_management_schema() {
function background() {
browser.test.assertTrue(browser.management, "browser.management API exists");
browser.test.notifyPass("management-schema");
}
let extension = ExtensionTestUtils.loadExtension({
manifest: {
permissions: ["management"],
},
background: `(${background})()`,
});
yield extension.startup();
yield extension.awaitFinish("management-schema");
yield extension.unload();
});

Просмотреть файл

@ -32,6 +32,7 @@ skip-if = release_build
[test_ext_idle.js]
[test_ext_json_parser.js]
[test_ext_localStorage.js]
[test_ext_management.js]
[test_ext_manifest_content_security_policy.js]
[test_ext_manifest_incognito.js]
[test_ext_onmessage_removelistener.js]