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

Unified 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, 10 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
Index: chrome/common/extensions/api/generated.json
diff --git a/chrome/common/extensions/api/generated.json b/chrome/common/extensions/api/generated.json
new file mode 100644
index 0000000000000000000000000000000000000000..3612afe18a4cdbe0266e7d87d0a79df4743000eb
--- /dev/null
+++ b/chrome/common/extensions/api/generated.json
@@ -0,0 +1,64 @@
+[
+ {
+ "namespace": "foo",
+ "nodoc": true,
+ "functions": [
+ {
+ "name": "add",
+ "type": "function",
+ "description": "Adds two numbers.",
+ "parameters": [
+ {
+ "name": "left",
+ "type": "integer",
+ "description": "left"
+ },
+ {
+ "name": "right",
+ "type": "integer",
+ "description": "right"
+ },
+ {
+ "name": "callback",
+ "type": "function",
+ "description": "Called with the answer.",
+ "parameters": [
+ {
+ "type": "integer",
+ "name": "answer"
+ }
+ ]
+ }
+ ]
+ },
+ {
+ "name": "subtract",
+ "type": "function",
+ "description": "Adds two numbers.",
+ "parameters": [
+ {
+ "name": "left",
+ "type": "integer",
+ "description": "left"
+ },
+ {
+ "name": "right",
+ "type": "integer",
+ "description": "right"
+ },
+ {
+ "name": "callback",
+ "type": "function",
+ "description": "Called with the answer.",
+ "parameters": [
+ {
+ "type": "integer",
+ "name": "answer"
+ }
+ ]
+ }
+ ]
+ }
+ ]
+ }
+]
« 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