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

Side by Side Diff: Source/WebCore/inspector/Inspector.json

Issue 8872059: Merge 102140 - [Chromium] Web Inspector: getFunctionLocation should return scriptId as String not... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/963/
Patch Set: Created 9 years 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
« no previous file with comments | « Source/WebCore/bindings/v8/custom/V8InjectedScriptHostCustom.cpp ('k') | no next file » | 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 "version": { "major": "0", "minor": "1" }, 2 "version": { "major": "0", "minor": "1" },
3 "domains": [{ 3 "domains": [{
4 "domain": "Inspector", 4 "domain": "Inspector",
5 "hidden": true, 5 "hidden": true,
6 "types": [], 6 "types": [],
7 "commands": [ 7 "commands": [
8 { 8 {
9 "name": "enable", 9 "name": "enable",
10 "description": "Enables inspector domain notifications." 10 "description": "Enables inspector domain notifications."
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 { 289 {
290 "id": "RemoteObject", 290 "id": "RemoteObject",
291 "type": "object", 291 "type": "object",
292 "description": "Mirror object referencing original JavaScript ob ject.", 292 "description": "Mirror object referencing original JavaScript ob ject.",
293 "properties": [ 293 "properties": [
294 { "name": "type", "type": "string", "enum": ["object", "func tion", "undefined", "string", "number", "boolean"], "description": "Object type. " }, 294 { "name": "type", "type": "string", "enum": ["object", "func tion", "undefined", "string", "number", "boolean"], "description": "Object type. " },
295 { "name": "subtype", "type": "string", "optional": true, "en um": ["array", "null", "node", "regexp", "date"], "description": "Object subtype hint. Specified for <code>object</code> type values only." }, 295 { "name": "subtype", "type": "string", "optional": true, "en um": ["array", "null", "node", "regexp", "date"], "description": "Object subtype hint. Specified for <code>object</code> type values only." },
296 { "name": "className", "type": "string", "optional": true, " description": "Object class (constructor) name. Specified for <code>object</code > type values only." }, 296 { "name": "className", "type": "string", "optional": true, " description": "Object class (constructor) name. Specified for <code>object</code > type values only." },
297 { "name": "value", "type": "any", "optional": true, "descrip tion": "Remote object value (in case of primitive values or JSON values if it wa s requested)." }, 297 { "name": "value", "type": "any", "optional": true, "descrip tion": "Remote object value (in case of primitive values or JSON values if it wa s requested)." },
298 { "name": "description", "type": "string", "optional": true, "description": "String representation of the object." }, 298 { "name": "description", "type": "string", "optional": true, "description": "String representation of the object." },
299 { "name": "objectId", "$ref": "RemoteObjectId", "optional": true, "description": "Unique object identifier (for non-primitive values)." }, 299 { "name": "objectId", "$ref": "RemoteObjectId", "optional": true, "description": "Unique object identifier (for non-primitive values)." }
300 { "name": "functionLocation", "$ref": "Debugger.Location", " optional": true, "description": "Function location within owning script." }
301 ] 300 ]
302 }, 301 },
303 { 302 {
304 "id": "PropertyDescriptor", 303 "id": "PropertyDescriptor",
305 "type": "object", 304 "type": "object",
306 "description": "Object property descriptor.", 305 "description": "Object property descriptor.",
307 "properties": [ 306 "properties": [
308 { "name": "name", "type": "string", "description": "Property name." }, 307 { "name": "name", "type": "string", "description": "Property name." },
309 { "name": "value", "$ref": "RemoteObject", "optional": true, "description": "The value associated with the property." }, 308 { "name": "value", "$ref": "RemoteObject", "optional": true, "description": "The value associated with the property." },
310 { "name": "writable", "type": "boolean", "description": "Tru e if the value associated with the property may be changed (data descriptors onl y)." }, 309 { "name": "writable", "type": "boolean", "description": "Tru e if the value associated with the property may be changed (data descriptors onl y)." },
(...skipping 1953 matching lines...) Expand 10 before | Expand all | Expand 10 after
2264 { "name": "workerId", "type": "integer" }, 2263 { "name": "workerId", "type": "integer" },
2265 { "name": "message", "type": "object" } 2264 { "name": "message", "type": "object" }
2266 ] 2265 ]
2267 }, 2266 },
2268 { 2267 {
2269 "name": "disconnectedFromWorker" 2268 "name": "disconnectedFromWorker"
2270 } 2269 }
2271 ] 2270 ]
2272 }] 2271 }]
2273 } 2272 }
OLDNEW
« no previous file with comments | « Source/WebCore/bindings/v8/custom/V8InjectedScriptHostCustom.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698