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

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

Issue 339041: Rename getTabContentses to getExtensionTabs. (Closed)
Patch Set: Update docs Created 11 years, 1 month 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
OLDNEW
1 [ 1 [
2 { 2 {
3 "namespace": "extension", 3 "namespace": "extension",
4 "types": [ 4 "types": [
5 { 5 {
6 "id": "Port", 6 "id": "Port",
7 "type": "object", 7 "type": "object",
8 "description": "An object which allows two way communication with other pages.", 8 "description": "An object which allows two way communication with other pages.",
9 "properties": { 9 "properties": {
10 "name": {"type": "string"}, 10 "name": {"type": "string"},
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 "parameters": [ 111 "parameters": [
112 {"type": "integer", "name": "windowId", "optional": true} 112 {"type": "integer", "name": "windowId", "optional": true}
113 ], 113 ],
114 "returns": { 114 "returns": {
115 "type": "array", 115 "type": "array",
116 "description": "Array of global objects", 116 "description": "Array of global objects",
117 "items": { "type": "object" } 117 "items": { "type": "object" }
118 } 118 }
119 }, 119 },
120 { 120 {
121 "name": "getTabContentses", 121 "name": "getExtensionTabs",
122 "type": "function", 122 "type": "function",
123 "description": "Returns an array of the global JavaScript objects for ea ch of the tab contents views running inside the current extension. If windowId i s specified, returns only the tab contentses attached to the specified window.", 123 "description": "Returns an array of the global JavaScript objects for ea ch of the tab contents views running inside the current extension. If windowId i s specified, returns only the tab contentses attached to the specified window.",
124 "parameters": [ 124 "parameters": [
125 {"type": "integer", "name": "windowId", "optional": true} 125 {"type": "integer", "name": "windowId", "optional": true}
126 ], 126 ],
127 "returns": { 127 "returns": {
128 "type": "array", 128 "type": "array",
129 "description": "Array of global objects", 129 "description": "Array of global objects",
130 "items": { "type": "object" } 130 "items": { "type": "object" }
131 } 131 }
(...skipping 1332 matching lines...) Expand 10 before | Expand all | Expand 10 after
1464 "type": "function", 1464 "type": "function",
1465 "description": "Logs a message during internal unit testing.", 1465 "description": "Logs a message during internal unit testing.",
1466 "parameters": [ 1466 "parameters": [
1467 {"type": "string", "name": "message"} 1467 {"type": "string", "name": "message"}
1468 ] 1468 ]
1469 } 1469 }
1470 ], 1470 ],
1471 "events": [] 1471 "events": []
1472 } 1472 }
1473 ] 1473 ]
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_browsertests_misc.cc ('k') | chrome/common/extensions/docs/README.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698