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

Side by Side Diff: Source/devtools/protocol.json

Issue 148253005: DevTools: remove references to modules/indexeddb from core/inspector (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Addressed comments Created 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 { 1 {
2 "version": { "major": "1", "minor": "1" }, 2 "version": { "major": "1", "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 1400 matching lines...) Expand 10 before | Expand all | Expand 10 after
1411 { "name": "upper", "$ref": "Key", "optional": true, "descrip tion": "Upper bound." }, 1411 { "name": "upper", "$ref": "Key", "optional": true, "descrip tion": "Upper bound." },
1412 { "name": "lowerOpen", "type": "boolean", "description": "If true lower bound is open." }, 1412 { "name": "lowerOpen", "type": "boolean", "description": "If true lower bound is open." },
1413 { "name": "upperOpen", "type": "boolean", "description": "If true upper bound is open." } 1413 { "name": "upperOpen", "type": "boolean", "description": "If true upper bound is open." }
1414 ] 1414 ]
1415 }, 1415 },
1416 { 1416 {
1417 "id": "DataEntry", 1417 "id": "DataEntry",
1418 "type": "object", 1418 "type": "object",
1419 "description": "Data entry.", 1419 "description": "Data entry.",
1420 "properties": [ 1420 "properties": [
1421 { "name": "key", "$ref": "Runtime.RemoteObject", "descriptio n": "Key." }, 1421 { "name": "key", "type": "string", "description": "Key." },
pfeldman 2014/02/06 11:33:47 JSON-stringified key object.
1422 { "name": "primaryKey", "$ref": "Runtime.RemoteObject", "des cription": "Primary key." }, 1422 { "name": "primaryKey", "type": "string", "description": "Pr imary key." },
pfeldman 2014/02/06 11:33:47 ditto
1423 { "name": "value", "$ref": "Runtime.RemoteObject", "descript ion": "Value." } 1423 { "name": "value", "type": "string", "description": "Value." }
pfeldman 2014/02/06 11:33:47 ditto
1424 ] 1424 ]
1425 }, 1425 },
1426 { 1426 {
1427 "id": "KeyPath", 1427 "id": "KeyPath",
1428 "type": "object", 1428 "type": "object",
1429 "description": "Key path.", 1429 "description": "Key path.",
1430 "properties": [ 1430 "properties": [
1431 { "name": "type", "type": "string", "enum": ["null", "string ", "array"], "description": "Key path type." }, 1431 { "name": "type", "type": "string", "enum": ["null", "string ", "array"], "description": "Key path type." },
1432 { "name": "string", "type": "string", "optional": true, "des cription": "String value." }, 1432 { "name": "string", "type": "string", "optional": true, "des cription": "String value." },
1433 { "name": "array", "type": "array", "optional": true, "items ": { "type": "string" }, "description": "Array value." } 1433 { "name": "array", "type": "array", "optional": true, "items ": { "type": "string" }, "description": "Array value." }
(...skipping 2653 matching lines...) Expand 10 before | Expand all | Expand 10 after
4087 ], 4087 ],
4088 "handlers": ["browser", "frontend"] 4088 "handlers": ["browser", "frontend"]
4089 }, 4089 },
4090 { 4090 {
4091 "name": "tracingComplete", 4091 "name": "tracingComplete",
4092 "handlers": ["browser", "frontend"] 4092 "handlers": ["browser", "frontend"]
4093 } 4093 }
4094 ] 4094 ]
4095 }] 4095 }]
4096 } 4096 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/IndexedDBModel.js ('k') | Source/modules/indexeddb/InspectorIndexedDBAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698