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

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

Issue 12439002: Update idl files after Chrome roll. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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": "0" }, 2 "version": { "major": "1", "minor": "0" },
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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 { 104 {
105 "id": "Frame", 105 "id": "Frame",
106 "type": "object", 106 "type": "object",
107 "description": "Information about the Frame on the page.", 107 "description": "Information about the Frame on the page.",
108 "properties": [ 108 "properties": [
109 { "name": "id", "type": "string", "description": "Frame uniq ue identifier." }, 109 { "name": "id", "type": "string", "description": "Frame uniq ue identifier." },
110 { "name": "parentId", "type": "string", "optional": true, "d escription": "Parent frame identifier." }, 110 { "name": "parentId", "type": "string", "optional": true, "d escription": "Parent frame identifier." },
111 { "name": "loaderId", "$ref": "Network.LoaderId", "descripti on": "Identifier of the loader associated with this frame." }, 111 { "name": "loaderId", "$ref": "Network.LoaderId", "descripti on": "Identifier of the loader associated with this frame." },
112 { "name": "name", "type": "string", "optional": true, "descr iption": "Frame's name as specified in the tag." }, 112 { "name": "name", "type": "string", "optional": true, "descr iption": "Frame's name as specified in the tag." },
113 { "name": "url", "type": "string", "description": "Frame doc ument's URL." }, 113 { "name": "url", "type": "string", "description": "Frame doc ument's URL." },
114 { "name": "securityOrigin", "type": "string", "optional": tr ue, "description": "Frame document's security origin." }, 114 { "name": "securityOrigin", "type": "string", "description": "Frame document's security origin." },
115 { "name": "mimeType", "type": "string", "description": "Fram e document's mimeType as determined by the browser." } 115 { "name": "mimeType", "type": "string", "description": "Fram e document's mimeType as determined by the browser." }
116 ], 116 ],
117 "hidden": true 117 "hidden": true
118 }, 118 },
119 { 119 {
120 "id": "FrameResourceTree", 120 "id": "FrameResourceTree",
121 "type": "object", 121 "type": "object",
122 "description": "Information about the Frame hierarchy along with their cached resources.", 122 "description": "Information about the Frame hierarchy along with their cached resources.",
123 "properties": [ 123 "properties": [
124 { "name": "frame", "$ref": "Frame", "description": "Frame in formation for this tree item." }, 124 { "name": "frame", "$ref": "Frame", "description": "Frame in formation for this tree item." },
(...skipping 1151 matching lines...) Expand 10 before | Expand all | Expand 10 after
1276 { "name": "database", "$ref": "Database" } 1276 { "name": "database", "$ref": "Database" }
1277 ] 1277 ]
1278 } 1278 }
1279 ] 1279 ]
1280 }, 1280 },
1281 { 1281 {
1282 "domain": "IndexedDB", 1282 "domain": "IndexedDB",
1283 "hidden": true, 1283 "hidden": true,
1284 "types": [ 1284 "types": [
1285 { 1285 {
1286 "id": "SecurityOriginWithDatabaseNames",
1287 "type": "object",
1288 "description": "Security origin with database names.",
1289 "properties": [
1290 { "name": "securityOrigin", "type": "string", "description": "Security origin." },
1291 { "name": "databaseNames", "type": "array", "items": { "type ": "string" }, "description": "Database names for this origin." }
1292 ]
1293 },
1294 {
1295 "id": "DatabaseWithObjectStores", 1286 "id": "DatabaseWithObjectStores",
1296 "type": "object", 1287 "type": "object",
1297 "description": "Database with an array of object stores.", 1288 "description": "Database with an array of object stores.",
1298 "properties": [ 1289 "properties": [
1299 { "name": "name", "type": "string", "description": "Database name." }, 1290 { "name": "name", "type": "string", "description": "Database name." },
1300 { "name": "version", "type": "string", "description": "Depre cated string database version." }, 1291 { "name": "version", "type": "string", "description": "Depre cated string database version." },
1301 { "name": "intVersion", "type": "integer", "description": "I nteger database version." }, 1292 { "name": "intVersion", "type": "integer", "description": "I nteger database version." },
1302 { "name": "objectStores", "type": "array", "items": { "$ref" : "ObjectStore" }, "description": "Object stores in this database." } 1293 { "name": "objectStores", "type": "array", "items": { "$ref" : "ObjectStore" }, "description": "Object stores in this database." }
1303 ] 1294 ]
1304 }, 1295 },
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
1371 "commands": [ 1362 "commands": [
1372 { 1363 {
1373 "name": "enable", 1364 "name": "enable",
1374 "description": "Enables events from backend." 1365 "description": "Enables events from backend."
1375 }, 1366 },
1376 { 1367 {
1377 "name": "disable", 1368 "name": "disable",
1378 "description": "Disables events from backend." 1369 "description": "Disables events from backend."
1379 }, 1370 },
1380 { 1371 {
1381 "name": "requestDatabaseNamesForFrame", 1372 "name": "requestDatabaseNames",
1382 "async": true, 1373 "async": true,
1383 "parameters": [ 1374 "parameters": [
1384 { "name": "frameId", "$ref": "Network.FrameId", "description ": "Frame id." } 1375 { "name": "securityOrigin", "type": "string", "description": "Security origin." }
1385 ], 1376 ],
1386 "returns": [ 1377 "returns": [
1387 { "name": "securityOriginWithDatabaseNames", "$ref": "Securi tyOriginWithDatabaseNames", "description": "Frame with database names." } 1378 { "name": "databaseNames", "type": "array", "items": { "type ": "string" }, "description": "Database names for origin." }
1388 ], 1379 ],
1389 "description": "Requests database names for given frame's securi ty origin." 1380 "description": "Requests database names for given security origi n."
1390 }, 1381 },
1391 { 1382 {
1392 "name": "requestDatabase", 1383 "name": "requestDatabase",
1393 "async": true, 1384 "async": true,
1394 "parameters": [ 1385 "parameters": [
1395 { "name": "frameId", "$ref": "Network.FrameId", "description ": "Frame id." }, 1386 { "name": "securityOrigin", "type": "string", "description": "Security origin." },
1396 { "name": "databaseName", "type": "string", "description": " Database name." } 1387 { "name": "databaseName", "type": "string", "description": " Database name." }
1397 ], 1388 ],
1398 "returns": [ 1389 "returns": [
1399 { "name": "databaseWithObjectStores", "$ref": "DatabaseWithO bjectStores", "description": "Database with an array of object stores." } 1390 { "name": "databaseWithObjectStores", "$ref": "DatabaseWithO bjectStores", "description": "Database with an array of object stores." }
1400 ], 1391 ],
1401 "description": "Requests database with given name in given frame ." 1392 "description": "Requests database with given name in given frame ."
1402 }, 1393 },
1403 { 1394 {
1404 "name": "requestData", 1395 "name": "requestData",
1405 "async": true, 1396 "async": true,
1406 "parameters": [ 1397 "parameters": [
1407 { "name": "frameId", "$ref": "Network.FrameId", "description ": "Frame id." }, 1398 { "name": "securityOrigin", "type": "string", "description": "Security origin." },
1408 { "name": "databaseName", "type": "string", "description": " Database name." }, 1399 { "name": "databaseName", "type": "string", "description": " Database name." },
1409 { "name": "objectStoreName", "type": "string", "description" : "Object store name." }, 1400 { "name": "objectStoreName", "type": "string", "description" : "Object store name." },
1410 { "name": "indexName", "type": "string", "description": "Ind ex name, empty string for object store data requests." }, 1401 { "name": "indexName", "type": "string", "description": "Ind ex name, empty string for object store data requests." },
1411 { "name": "skipCount", "type": "integer", "description": "Nu mber of records to skip." }, 1402 { "name": "skipCount", "type": "integer", "description": "Nu mber of records to skip." },
1412 { "name": "pageSize", "type": "integer", "description": "Num ber of records to fetch." }, 1403 { "name": "pageSize", "type": "integer", "description": "Num ber of records to fetch." },
1413 { "name": "keyRange", "$ref": "KeyRange", "optional": true, "description": "Key range." } 1404 { "name": "keyRange", "$ref": "KeyRange", "optional": true, "description": "Key range." }
1414 ], 1405 ],
1415 "returns": [ 1406 "returns": [
1416 { "name": "objectStoreDataEntries", "type": "array", "items" : { "$ref": "DataEntry" }, "description": "Array of object store data entries." }, 1407 { "name": "objectStoreDataEntries", "type": "array", "items" : { "$ref": "DataEntry" }, "description": "Array of object store data entries." },
1417 { "name": "hasMore", "type": "boolean", "description": "If t rue, there are more entries to fetch in the given range." } 1408 { "name": "hasMore", "type": "boolean", "description": "If t rue, there are more entries to fetch in the given range." }
(...skipping 1170 matching lines...) Expand 10 before | Expand all | Expand 10 after
2588 }, 2579 },
2589 { 2580 {
2590 "domain": "Timeline", 2581 "domain": "Timeline",
2591 "description": "Timeline provides its clients with instrumentation recor ds that are generated during the page runtime. Timeline instrumentation can be s tarted and stopped using corresponding commands. While timeline is started, it i s generating timeline event records.", 2582 "description": "Timeline provides its clients with instrumentation recor ds that are generated during the page runtime. Timeline instrumentation can be s tarted and stopped using corresponding commands. While timeline is started, it i s generating timeline event records.",
2592 "types": [ 2583 "types": [
2593 { 2584 {
2594 "id": "TimelineEvent", 2585 "id": "TimelineEvent",
2595 "type": "object", 2586 "type": "object",
2596 "properties": [ 2587 "properties": [
2597 { "name": "type", "type": "string", "description": "Event ty pe." }, 2588 { "name": "type", "type": "string", "description": "Event ty pe." },
2589 { "name": "thread", "type": "string", "optional": true, "des cription": "If present, identifies the thread that produced the event." },
2598 { "name": "data", "type": "object", "description": "Event da ta." }, 2590 { "name": "data", "type": "object", "description": "Event da ta." },
2599 { "name": "children", "type": "array", "optional": true, "it ems": { "$ref": "TimelineEvent" }, "description": "Nested records." } 2591 { "name": "children", "type": "array", "optional": true, "it ems": { "$ref": "TimelineEvent" }, "description": "Nested records." }
2600 ], 2592 ],
2601 "description": "Timeline record contains information about the r ecorded activity." 2593 "description": "Timeline record contains information about the r ecorded activity."
2602 } 2594 }
2603 ], 2595 ],
2604 "commands": [ 2596 "commands": [
2605 { 2597 {
2606 "name": "start", 2598 "name": "start",
2607 "parameters": [ 2599 "parameters": [
(...skipping 1096 matching lines...) Expand 10 before | Expand all | Expand 10 after
3704 ] 3696 ]
3705 } 3697 }
3706 ], 3698 ],
3707 "events": [ 3699 "events": [
3708 { 3700 {
3709 "name": "layerTreeDidChange" 3701 "name": "layerTreeDidChange"
3710 } 3702 }
3711 ] 3703 ]
3712 }] 3704 }]
3713 } 3705 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698