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

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

Issue 224012: Renames getTabContentses to getExtensionTabs (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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
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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 "parameters": [ 88 "parameters": [
89 {"type": "integer", "name": "windowId", "optional": true} 89 {"type": "integer", "name": "windowId", "optional": true}
90 ], 90 ],
91 "returns": { 91 "returns": {
92 "type": "array", 92 "type": "array",
93 "description": "Array of global objects", 93 "description": "Array of global objects",
94 "items": { "type": "object" } 94 "items": { "type": "object" }
95 } 95 }
96 }, 96 },
97 { 97 {
98 "name": "getTabContentses", 98 "name": "getExtensionTabs",
99 "type": "function", 99 "type": "function",
100 "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.", 100 "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.",
101 "parameters": [ 101 "parameters": [
102 {"type": "integer", "name": "windowId", "optional": true} 102 {"type": "integer", "name": "windowId", "optional": true}
103 ], 103 ],
104 "returns": { 104 "returns": {
105 "type": "array", 105 "type": "array",
106 "description": "Array of global objects", 106 "description": "Array of global objects",
107 "items": { "type": "object" } 107 "items": { "type": "object" }
108 } 108 }
(...skipping 1150 matching lines...) Expand 10 before | Expand all | Expand 10 after
1259 "type": "function", 1259 "type": "function",
1260 "description": "Logs a message during internal unit testing.", 1260 "description": "Logs a message during internal unit testing.",
1261 "parameters": [ 1261 "parameters": [
1262 {"type": "string", "name": "message"} 1262 {"type": "string", "name": "message"}
1263 ] 1263 ]
1264 } 1264 }
1265 ], 1265 ],
1266 "events": [] 1266 "events": []
1267 } 1267 }
1268 ] 1268 ]
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_browsertests_misc.cc ('k') | chrome/renderer/resources/extension_process_bindings.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698