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

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

Issue 339553004: DevTools: [MediaQueryInspector] Compute media query length on backend (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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 | « Source/core/inspector/InspectorCSSAgent.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": "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 2594 matching lines...) Expand 10 before | Expand all | Expand 10 after
2605 "items": { "$ref": "MediaQueryExpression" }, 2605 "items": { "$ref": "MediaQueryExpression" },
2606 "description": "An array of media query expressions.", 2606 "description": "An array of media query expressions.",
2607 "hidden": true 2607 "hidden": true
2608 }, 2608 },
2609 { 2609 {
2610 "id": "MediaQueryExpression", 2610 "id": "MediaQueryExpression",
2611 "type": "object", 2611 "type": "object",
2612 "properties": [ 2612 "properties": [
2613 { "name": "value", "type": "number", "description": "Media q uery expression value."}, 2613 { "name": "value", "type": "number", "description": "Media q uery expression value."},
2614 { "name": "unit", "type": "string", "description": "Media qu ery expression units."}, 2614 { "name": "unit", "type": "string", "description": "Media qu ery expression units."},
2615 { "name": "feature", "type": "string", "description": "Media query expression feature."} 2615 { "name": "feature", "type": "string", "description": "Media query expression feature."},
2616 { "name": "computedLength", "type": "number", "optional": tr ue, "description": "Computed length of media query expression (if applicable)."}
2616 ], 2617 ],
2617 "description": "Media query expression data.", 2618 "description": "Media query expression data.",
2618 "hidden": true 2619 "hidden": true
2619 }, 2620 },
2620 { 2621 {
2621 "id": "PlatformFontUsage", 2622 "id": "PlatformFontUsage",
2622 "type": "object", 2623 "type": "object",
2623 "properties": [ 2624 "properties": [
2624 { "name": "familyName", "type": "string", "description": "Fo nt's family name reported by platform."}, 2625 { "name": "familyName", "type": "string", "description": "Fo nt's family name reported by platform."},
2625 { "name": "glyphCount", "type": "number", "description": "Am ount of glyphs that were rendered with this font."} 2626 { "name": "glyphCount", "type": "number", "description": "Am ount of glyphs that were rendered with this font."}
(...skipping 1566 matching lines...) Expand 10 before | Expand all | Expand 10 after
4192 { 4193 {
4193 "name": "dataAvailable", 4194 "name": "dataAvailable",
4194 "parameters": [ 4195 "parameters": [
4195 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." } 4196 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." }
4196 ], 4197 ],
4197 "handlers": ["browser", "frontend"] 4198 "handlers": ["browser", "frontend"]
4198 } 4199 }
4199 ] 4200 ]
4200 }] 4201 }]
4201 } 4202 }
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorCSSAgent.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698