summaryrefslogtreecommitdiffstats
path: root/chrome/common/extensions/api/extension.json
diff options
context:
space:
mode:
authorkalman@chromium.org <kalman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-06 02:51:29 +0000
committerkalman@chromium.org <kalman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-06 02:51:29 +0000
commitf8d87d3aa72e8a5575c921ed7764c7478f7d54d2 (patch)
tree2158cd4d3f8149078bc92ca64ef52d62da43efbc /chrome/common/extensions/api/extension.json
parent5075fa32f9d9995c8a086be8e40cecf22dad694a (diff)
downloadchromium_src-f8d87d3aa72e8a5575c921ed7764c7478f7d54d2.zip
chromium_src-f8d87d3aa72e8a5575c921ed7764c7478f7d54d2.tar.gz
chromium_src-f8d87d3aa72e8a5575c921ed7764c7478f7d54d2.tar.bz2
Delete chromeHidden! This involves (a) moving all the remaining modules
exported on chromeHidden into module system exports (notably Event and JSONSchemaValidator) and (b) moving all of the local state stored on chromeHidden into local variables. TBR=koz@chromium.org BUG=55316, 244205 Review URL: https://codereview.chromium.org/16256026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@204396 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/extensions/api/extension.json')
-rw-r--r--chrome/common/extensions/api/extension.json20
1 files changed, 17 insertions, 3 deletions
diff --git a/chrome/common/extensions/api/extension.json b/chrome/common/extensions/api/extension.json
index a6844d2..7f79475 100644
--- a/chrome/common/extensions/api/extension.json
+++ b/chrome/common/extensions/api/extension.json
@@ -108,7 +108,12 @@
"returns": {
"type": "array",
"description": "Array of global objects",
- "items": { "type": "object", "isInstanceOf": "global", "additionalProperties": { "type": "any" } }
+ "items": {
+ "name": "viewGlobals",
+ "type": "object",
+ "isInstanceOf": "global",
+ "additionalProperties": { "type": "any" }
+ }
}
},
{
@@ -118,7 +123,11 @@
"description": "Returns the JavaScript 'window' object for the background page running inside the current extension. Returns null if the extension has no background page.",
"parameters": [],
"returns": {
- "type": "object", "isInstanceOf": "global", "additionalProperties": { "type": "any" }
+ "type": "object",
+ "optional": true,
+ "name": "backgroundPageGlobal",
+ "isInstanceOf": "global",
+ "additionalProperties": { "type": "any" }
}
},
{
@@ -134,7 +143,12 @@
"returns": {
"type": "array",
"description": "Array of global window objects",
- "items": { "type": "object", "isInstanceOf": "global", "additionalProperties": { "type": "any" } }
+ "items": {
+ "type": "object",
+ "name": "tabGlobals",
+ "isInstanceOf": "global",
+ "additionalProperties": { "type": "any" }
+ }
}
},
{