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

Side by Side Diff: chrome/common/extensions/api/app.json

Issue 9460002: Convert app_bindings.js to the schema_generated_bindings.js infrastructure. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: make test extension ID tests pass Created 8 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/common_resources.grd ('k') | chrome/common/extensions/api/extension_api.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 [
2 {
3 "namespace": "app",
4 "nodoc": true,
5 "unprivileged": true,
6 "matches": [ "<all_urls>" ],
7 "types": [
8 {
9 "id": "Details",
10 "description": "TODO (it's a manifest)",
11 "type": "object",
12 "properties": {},
13 "additionalProperties": { "type": "any" }
14 },
15 {
16 "id": "DOMWindow",
17 "type": "object",
18 "properties": {},
19 "additionalProperties": { "type": "any" }
20 }
21 ],
22 "functions": [
23 {
24 "name": "getIsInstalled",
25 "description": "TODO",
26 "type": "function",
27 "parameters": [],
28 "returns": {
29 "name": "isInstalled",
30 "description": "TODO",
31 "type": "boolean"
32 }
33 },
34 {
35 "name": "install",
36 "description": "TODO",
37 "type": "function",
38 "parameters": []
39 },
40 {
41 "name": "getDetails",
42 "description": "TODO",
43 "type": "function",
44 "parameters": [],
45 "returns": {
46 "$ref": "Details",
47 "optional": true,
48 "description": "TODO"
49 }
50 },
51 {
52 "name": "getDetailsForFrame",
53 "description": "TODO",
54 "type": "function",
55 "parameters": [
56 {
57 "name": "frame",
58 "description": "TODO",
59 "$ref": "DOMWindow"
60 }
61 ],
62 "returns": {
63 "$ref": "Details",
64 "optional": true,
65 "description": "TODO"
66 }
67 }
68 ]
69 }
70 ]
OLDNEW
« no previous file with comments | « chrome/common/common_resources.grd ('k') | chrome/common/extensions/api/extension_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698