Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5247)

Unified Diff: chrome/common/extensions/api/dashboard_private.json

Issue 1268853003: Move webstorePrivate DelegatedInstall functions into new dashboardPrivate API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/extensions/api/_api_features.json ('k') | chrome/common/extensions/api/schemas.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/api/dashboard_private.json
diff --git a/chrome/common/extensions/api/dashboard_private.json b/chrome/common/extensions/api/dashboard_private.json
new file mode 100644
index 0000000000000000000000000000000000000000..a488ef5d09788d7121a740fe75cf18aa6a2d17a8
--- /dev/null
+++ b/chrome/common/extensions/api/dashboard_private.json
@@ -0,0 +1,162 @@
+// Copyright 2015 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":"dashboardPrivate",
+ "description": "none",
+ "types": [
+ {
+ "id": "Result",
+ "type": "string",
+ "enum": [{
+ "name": "",
+ "description": "Empty string, used to indicate success by showPermissionPromptForDelegatedInstall"
+ }, {
+ "name": "success",
+ "description": "Used to indicate success by showPermissionPromptForDelegatedBundleInstall"
+ }, {
+ "name": "unknown_error",
+ "description": "An unknown error occured"
+ }, {
+ "name": "user_cancelled",
+ "description": "The user canceled the operation"
+ }, {
+ "name": "invalid_id",
+ "description": "An invalid Chrome Web Store item ID was provided"
+ }, {
+ "name": "manifest_error",
+ "description": "Parsing of the extension manifest failed"
+ }, {
+ "name": "icon_error",
+ "description": "Failed to retrieve the extension's icon from the Web Store, or the icon was invalid"
+ }, {
+ "name": "invalid_icon_url",
+ "description": "An invalid icon URL was provided"
+ }],
+ "description": "Whether the API call succeeded, or the reason for failure."
+ }
+ ],
+ "functions": [
+ {
+ "name": "showPermissionPromptForDelegatedInstall",
+ "description": "Shows a permission prompt for the given extension, for installing to a different account.",
+ "parameters": [
+ {
+ "name": "details",
+ "type": "object",
+ "properties": {
+ "id": {
+ "type": "string",
+ "description": "The id of the extension to be installled.",
+ "minLength": 32,
+ "maxLength": 32
+ },
+ "manifest": {
+ "type": "string",
+ "description": "A string with the contents of the extension's manifest.json file. During the install process, the browser will check that the downloaded extension's manifest matches what was passed in here.",
+ "minLength": 1
+ },
+ "delegatedUser": {
+ "type": "string",
+ "description": "The display name of the user for whom the extension should be installed."
+ },
+ "iconUrl": {
+ "type": "string",
+ "optional": true,
+ "desciption": "A URL for the image to display in the confirmation dialog"
+ },
+ "iconData": {
+ "type": "string",
+ "optional": true,
+ "description": "An icon as a base64-encoded image, displayed in a confirmation dialog."
+ },
+ "localizedName": {
+ "type": "string",
+ "optional": true,
+ "description": "A string to use instead of the raw value of the 'name' key from manifest.json."
+ }
+ }
+ },
+ {
+ "name": "callback",
+ "type": "function",
+ "description": "Called when the user has either accepted/rejected the dialog, or some error occurred (such as invalid manifest or icon image data).",
+ "optional": true,
+ "parameters": [
+ {
+ "name": "result",
+ "$ref": "Result",
+ "description": "A string result code, which will be empty upon success. The possible values in the case of errors include 'unknown_error', 'user_cancelled', 'manifest_error', 'icon_error', 'invalid_id', and 'invalid_icon_url'."
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "name": "showPermissionPromptForDelegatedBundleInstall",
+ "description": "Shows a permission prompt for the given bundle, for installing to a different account.",
+ "parameters": [
+ {
+ "name": "details",
+ "type": "object",
+ "properties": {
+ "localizedName": {
+ "type": "string",
+ "description": "A title to use for display in a confirmation dialog."
+ },
+ "delegatedUser": {
+ "type": "string",
+ "description": "The display name of the user for whom the extension should be installed."
+ },
+ "iconUrl": {
+ "type": "string",
+ "optional": true,
+ "desciption": "A URL for the image to display in the confirmation dialog"
+ }
+ },
+ "additionalProperties": { "type": "any" }
+ },
+ {
+ "name": "contents",
+ "description": "An array of extension details to be installed.",
+ "type": "array",
+ "items": {
+ "type": "object",
+ "properties": {
+ "id": {
+ "type": "string",
+ "description": "The id of the extension to be installed.",
+ "minLength": 32,
+ "maxLength": 32
+ },
+ "manifest": {
+ "type": "string",
+ "description": "A string with the contents of the extension's manifest.json file. During the install process, the browser will check that the downloaded extension's manifest matches what was passed in here.",
+ "minLength": 1
+ },
+ "iconUrl": {
+ "type": "string",
+ "optional": true,
+ "desciption": "A URL for the image to display in the confirmation dialog"
+ },
+ "localizedName": {
+ "type": "string",
+ "description": "A string to use instead of the raw value of the 'name' key from manifest.json."
+ }
+ }
+ }
+ },
+ {
+ "name": "callback",
+ "type": "function",
+ "description": "Called when the install process completes. Upon failures, chrome.runtime.lastError will be set to 'Invalid bundle', 'Invalid icon url', or 'User cancelled install'.",
+ "optional": true,
+ "parameters": []
+ }
+ ]
+ }
+ ]
+ }
+]
« no previous file with comments | « chrome/common/extensions/api/_api_features.json ('k') | chrome/common/extensions/api/schemas.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698