summaryrefslogtreecommitdiffstats
path: root/chrome/common/extensions/api/app.json
diff options
context:
space:
mode:
authorkalman@chromium.org <kalman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-18 08:22:22 +0000
committerkalman@chromium.org <kalman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-18 08:22:22 +0000
commitcdb3a8bffd314443da88ae89bc87dc34f43a0e66 (patch)
tree4be9af79bfe8add68961d54f3677b14b8a5413fc /chrome/common/extensions/api/app.json
parent4e167479b6eab4c9bb6aaf2284478bc009909851 (diff)
downloadchromium_src-cdb3a8bffd314443da88ae89bc87dc34f43a0e66.zip
chromium_src-cdb3a8bffd314443da88ae89bc87dc34f43a0e66.tar.gz
chromium_src-cdb3a8bffd314443da88ae89bc87dc34f43a0e66.tar.bz2
Revert 127391 - Convert app_bindings.js to the schema_generated_bindings.js infrastructure.
This involves opening up *all* custom bindings to web pages, where access is controlled content-script style using a URL-matches property in the API schema. Reverted due to performance regression. BUG=104100,117282 TEST=unit_tests,browser_tests Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=125811 Review URL: http://codereview.chromium.org/9460002 TBR=kalman@chromium.org Review URL: https://chromiumcodereview.appspot.com/9718023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@127402 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/extensions/api/app.json')
-rw-r--r--chrome/common/extensions/api/app.json70
1 files changed, 0 insertions, 70 deletions
diff --git a/chrome/common/extensions/api/app.json b/chrome/common/extensions/api/app.json
deleted file mode 100644
index 0e813e6..0000000
--- a/chrome/common/extensions/api/app.json
+++ /dev/null
@@ -1,70 +0,0 @@
-[
- {
- "namespace": "app",
- "nodoc": true,
- "unprivileged": true,
- "matches": [ "<all_urls>" ],
- "types": [
- {
- "id": "Details",
- "description": "TODO (it's a manifest)",
- "type": "object",
- "properties": {},
- "additionalProperties": { "type": "any" }
- },
- {
- "id": "DOMWindow",
- "type": "object",
- "properties": {},
- "additionalProperties": { "type": "any" }
- }
- ],
- "functions": [
- {
- "name": "getIsInstalled",
- "description": "TODO",
- "type": "function",
- "parameters": [],
- "returns": {
- "name": "isInstalled",
- "description": "TODO",
- "type": "boolean"
- }
- },
- {
- "name": "install",
- "description": "TODO",
- "type": "function",
- "parameters": []
- },
- {
- "name": "getDetails",
- "description": "TODO",
- "type": "function",
- "parameters": [],
- "returns": {
- "$ref": "Details",
- "optional": true,
- "description": "TODO"
- }
- },
- {
- "name": "getDetailsForFrame",
- "description": "TODO",
- "type": "function",
- "parameters": [
- {
- "name": "frame",
- "description": "TODO",
- "$ref": "DOMWindow"
- }
- ],
- "returns": {
- "$ref": "Details",
- "optional": true,
- "description": "TODO"
- }
- }
- ]
- }
-]