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

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

Issue 6185004: Fix a typo.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 11 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 | « no previous file | chrome/common/extensions/docs/extension.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 [ 1 [
2 { 2 {
3 "namespace": "extension", 3 "namespace": "extension",
4 "unprivileged": true, 4 "unprivileged": true,
5 "types": [ 5 "types": [
6 { 6 {
7 "id": "MessageSender", 7 "id": "MessageSender",
8 "type": "object", 8 "type": "object",
9 "description": "An object containing information about the script contex t that sent a message or request.", 9 "description": "An object containing information about the script contex t that sent a message or request.",
10 "properties": { 10 "properties": {
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 ], 149 ],
150 "returns": { 150 "returns": {
151 "type": "array", 151 "type": "array",
152 "description": "Array of global objects", 152 "description": "Array of global objects",
153 "items": { "type": "object", "isInstanceOf": "DOMWindow", "properties" : {}, "additionalProperties": { "type": "any" } } 153 "items": { "type": "object", "isInstanceOf": "DOMWindow", "properties" : {}, "additionalProperties": { "type": "any" } }
154 } 154 }
155 }, 155 },
156 { 156 {
157 "name": "getBackgroundPage", 157 "name": "getBackgroundPage",
158 "type": "function", 158 "type": "function",
159 "description": "Returns the JavaScript 'window' object for the backgroun d page running inside the current extension. Returns null if the extension has n o backround page.", 159 "description": "Returns the JavaScript 'window' object for the backgroun d page running inside the current extension. Returns null if the extension has n o background page.",
160 "parameters": [], 160 "parameters": [],
161 "returns": { 161 "returns": {
162 "type": "object", "isInstanceOf": "DOMWindow", "properties": {}, "addi tionalProperties": { "type": "any" } 162 "type": "object", "isInstanceOf": "DOMWindow", "properties": {}, "addi tionalProperties": { "type": "any" }
163 } 163 }
164 }, 164 },
165 { 165 {
166 "name": "getToolstrips", 166 "name": "getToolstrips",
167 "nodoc": true, 167 "nodoc": true,
168 "type": "function", 168 "type": "function",
169 "description": "Deprecated. Please use getViews({type: 'TOOLSTRIP'}). Re turns an array of the JavaScript 'window' objects for each of the toolstrip view s running inside the current extension. If windowId is specified, returns only t he 'window' objects of toolstrips attached to the specified window.", 169 "description": "Deprecated. Please use getViews({type: 'TOOLSTRIP'}). Re turns an array of the JavaScript 'window' objects for each of the toolstrip view s running inside the current extension. If windowId is specified, returns only t he 'window' objects of toolstrips attached to the specified window.",
(...skipping 4297 matching lines...) Expand 10 before | Expand all | Expand 10 after
4467 "token": { "type": "string", "optional": true } 4467 "token": { "type": "string", "optional": true }
4468 } 4468 }
4469 } 4469 }
4470 ] 4470 ]
4471 } 4471 }
4472 ] 4472 ]
4473 } 4473 }
4474 ] 4474 ]
4475 } 4475 }
4476 ] 4476 ]
OLDNEW
« no previous file with comments | « no previous file | chrome/common/extensions/docs/extension.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698