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

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

Issue 9359040: WIP IDL-IPC2 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Checkpoint before going back to returning ListValue via ExtensionMsg_Response. 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
OLDNEW
(Empty)
1 [
2 {
3 "namespace": "foo",
4 "nodoc": true,
5 "functions": [
6 {
7 "name": "add",
8 "type": "function",
9 "description": "Adds two numbers.",
10 "parameters": [
11 {
12 "name": "left",
13 "type": "integer",
14 "description": "left"
15 },
16 {
17 "name": "right",
18 "type": "integer",
19 "description": "right"
20 },
21 {
22 "name": "callback",
23 "type": "function",
24 "description": "Called with the answer.",
25 "parameters": [
26 {
27 "type": "integer",
28 "name": "answer"
29 }
30 ]
31 }
32 ]
33 },
34 {
35 "name": "subtract",
36 "type": "function",
37 "description": "Adds two numbers.",
38 "parameters": [
39 {
40 "name": "left",
41 "type": "integer",
42 "description": "left"
43 },
44 {
45 "name": "right",
46 "type": "integer",
47 "description": "right"
48 },
49 {
50 "name": "callback",
51 "type": "function",
52 "description": "Called with the answer.",
53 "parameters": [
54 {
55 "type": "integer",
56 "name": "answer"
57 }
58 ]
59 }
60 ]
61 }
62 ]
63 }
64 ]
OLDNEW
« no previous file with comments | « chrome/common/extensions/api/extension_api.cc ('k') | chrome/common/extensions/api/generated_messages.h.tmpl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698