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

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: 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 2652 matching lines...) Expand 10 before | Expand all | Expand 10 after
2663 { "name": "nodeId", "$ref": "DOM.NodeId" } 2663 { "name": "nodeId", "$ref": "DOM.NodeId" }
2664 ], 2664 ],
2665 "returns": [ 2665 "returns": [
2666 { "name": "cssFamilyName", "type": "string", "description": "Font family name which is determined by computed style." }, 2666 { "name": "cssFamilyName", "type": "string", "description": "Font family name which is determined by computed style." },
2667 { "name": "fonts", "type": "array", "items": { "$ref": "Plat formFontUsage" }, "description": "Usage statistics for every employed platform f ont." } 2667 { "name": "fonts", "type": "array", "items": { "$ref": "Plat formFontUsage" }, "description": "Usage statistics for every employed platform f ont." }
2668 ], 2668 ],
2669 "description": "Requests information about platform fonts which we used to render child TextNodes in the given node.", 2669 "description": "Requests information about platform fonts which we used to render child TextNodes in the given node.",
2670 "hidden": true 2670 "hidden": true
2671 }, 2671 },
2672 { 2672 {
2673 "name": "getAllStyleSheets",
2674 "returns": [
2675 { "name": "headers", "type": "array", "items": { "$ref": "CS SStyleSheetHeader" }, "description": "Descriptor entries for all available style sheets." }
2676 ],
2677 "description": "Returns metainfo entries for all known styleshee ts."
2678 },
2679 {
2680 "name": "getStyleSheet", 2673 "name": "getStyleSheet",
2681 "parameters": [ 2674 "parameters": [
2682 { "name": "styleSheetId", "$ref": "StyleSheetId" } 2675 { "name": "styleSheetId", "$ref": "StyleSheetId" }
2683 ], 2676 ],
2684 "returns": [ 2677 "returns": [
2685 { "name": "styleSheet", "$ref": "CSSStyleSheetBody", "descri ption": "Stylesheet contents for the specified <code>styleSheetId</code>." } 2678 { "name": "styleSheet", "$ref": "CSSStyleSheetBody", "descri ption": "Stylesheet contents for the specified <code>styleSheetId</code>." }
2686 ], 2679 ],
2687 "description": "Returns stylesheet data for the specified <code> styleSheetId</code>." 2680 "description": "Returns stylesheet data for the specified <code> styleSheetId</code>."
2688 }, 2681 },
2689 { 2682 {
(...skipping 1455 matching lines...) Expand 10 before | Expand all | Expand 10 after
4145 ], 4138 ],
4146 "handlers": ["browser", "frontend"] 4139 "handlers": ["browser", "frontend"]
4147 }, 4140 },
4148 { 4141 {
4149 "name": "tracingComplete", 4142 "name": "tracingComplete",
4150 "handlers": ["browser", "frontend"] 4143 "handlers": ["browser", "frontend"]
4151 } 4144 }
4152 ] 4145 ]
4153 }] 4146 }]
4154 } 4147 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698