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

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

Issue 148523012: DevTools: [CSS] remove getAllStylesheets method from protocol (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix testcase extension 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
« no previous file with comments | « Source/devtools/front_end/StyleSheetOutlineDialog.js ('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 2643 matching lines...) Expand 10 before | Expand all | Expand 10 after
2654 { "name": "nodeId", "$ref": "DOM.NodeId" } 2654 { "name": "nodeId", "$ref": "DOM.NodeId" }
2655 ], 2655 ],
2656 "returns": [ 2656 "returns": [
2657 { "name": "cssFamilyName", "type": "string", "description": "Font family name which is determined by computed style." }, 2657 { "name": "cssFamilyName", "type": "string", "description": "Font family name which is determined by computed style." },
2658 { "name": "fonts", "type": "array", "items": { "$ref": "Plat formFontUsage" }, "description": "Usage statistics for every employed platform f ont." } 2658 { "name": "fonts", "type": "array", "items": { "$ref": "Plat formFontUsage" }, "description": "Usage statistics for every employed platform f ont." }
2659 ], 2659 ],
2660 "description": "Requests information about platform fonts which we used to render child TextNodes in the given node.", 2660 "description": "Requests information about platform fonts which we used to render child TextNodes in the given node.",
2661 "hidden": true 2661 "hidden": true
2662 }, 2662 },
2663 { 2663 {
2664 "name": "getAllStyleSheets",
2665 "returns": [
2666 { "name": "headers", "type": "array", "items": { "$ref": "CS SStyleSheetHeader" }, "description": "Descriptor entries for all available style sheets." }
2667 ],
2668 "description": "Returns metainfo entries for all known styleshee ts."
2669 },
2670 {
2671 "name": "getStyleSheet", 2664 "name": "getStyleSheet",
2672 "parameters": [ 2665 "parameters": [
2673 { "name": "styleSheetId", "$ref": "StyleSheetId" } 2666 { "name": "styleSheetId", "$ref": "StyleSheetId" }
2674 ], 2667 ],
2675 "returns": [ 2668 "returns": [
2676 { "name": "styleSheet", "$ref": "CSSStyleSheetBody", "descri ption": "Stylesheet contents for the specified <code>styleSheetId</code>." } 2669 { "name": "styleSheet", "$ref": "CSSStyleSheetBody", "descri ption": "Stylesheet contents for the specified <code>styleSheetId</code>." }
2677 ], 2670 ],
2678 "description": "Returns stylesheet data for the specified <code> styleSheetId</code>." 2671 "description": "Returns stylesheet data for the specified <code> styleSheetId</code>."
2679 }, 2672 },
2680 { 2673 {
(...skipping 1455 matching lines...) Expand 10 before | Expand all | Expand 10 after
4136 ], 4129 ],
4137 "handlers": ["browser", "frontend"] 4130 "handlers": ["browser", "frontend"]
4138 }, 4131 },
4139 { 4132 {
4140 "name": "tracingComplete", 4133 "name": "tracingComplete",
4141 "handlers": ["browser", "frontend"] 4134 "handlers": ["browser", "frontend"]
4142 } 4135 }
4143 ] 4136 ]
4144 }] 4137 }]
4145 } 4138 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/StyleSheetOutlineDialog.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698