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

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

Issue 1210893002: DevTools: [CSS] introduce strong types (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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/devtools/front_end/sdk/CSSStyleModel.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 2968 matching lines...) Expand 10 before | Expand all | Expand 10 after
2979 { "name": "computedStyle", "type": "array", "items": { "$ref ": "CSSComputedStyleProperty" }, "description": "Computed style for the specifie d DOM node." } 2979 { "name": "computedStyle", "type": "array", "items": { "$ref ": "CSSComputedStyleProperty" }, "description": "Computed style for the specifie d DOM node." }
2980 ], 2980 ],
2981 "description": "Returns the computed style for a DOM node identi fied by <code>nodeId</code>." 2981 "description": "Returns the computed style for a DOM node identi fied by <code>nodeId</code>."
2982 }, 2982 },
2983 { 2983 {
2984 "name": "getPlatformFontsForNode", 2984 "name": "getPlatformFontsForNode",
2985 "parameters": [ 2985 "parameters": [
2986 { "name": "nodeId", "$ref": "DOM.NodeId" } 2986 { "name": "nodeId", "$ref": "DOM.NodeId" }
2987 ], 2987 ],
2988 "returns": [ 2988 "returns": [
2989 { "name": "cssFamilyName", "type": "string", "description": "Font family name which is determined by computed style." },
2990 { "name": "fonts", "type": "array", "items": { "$ref": "Plat formFontUsage" }, "description": "Usage statistics for every employed platform f ont." } 2989 { "name": "fonts", "type": "array", "items": { "$ref": "Plat formFontUsage" }, "description": "Usage statistics for every employed platform f ont." }
2991 ], 2990 ],
2992 "description": "Requests information about platform fonts which we used to render child TextNodes in the given node.", 2991 "description": "Requests information about platform fonts which we used to render child TextNodes in the given node.",
2993 "hidden": true 2992 "hidden": true
2994 }, 2993 },
2995 { 2994 {
2996 "name": "getStyleSheetText", 2995 "name": "getStyleSheetText",
2997 "parameters": [ 2996 "parameters": [
2998 { "name": "styleSheetId", "$ref": "StyleSheetId" } 2997 { "name": "styleSheetId", "$ref": "StyleSheetId" }
2999 ], 2998 ],
(...skipping 2047 matching lines...) Expand 10 before | Expand all | Expand 10 after
5047 "description": "The security state of the page changed.", 5046 "description": "The security state of the page changed.",
5048 "parameters": [ 5047 "parameters": [
5049 { "name": "securityState", "$ref": "SecurityState", "descrip tion": "Security state." }, 5048 { "name": "securityState", "$ref": "SecurityState", "descrip tion": "Security state." },
5050 { "name": "explanations", "type": "array", "items": { "$ref" : "SecurityStateExplanation" }, "description": "List of explanations for the sec urity state. If the overall security state is `insecure` or `warning`, at least one corresponding explanation should be included.", "optional": true } 5049 { "name": "explanations", "type": "array", "items": { "$ref" : "SecurityStateExplanation" }, "description": "List of explanations for the sec urity state. If the overall security state is `insecure` or `warning`, at least one corresponding explanation should be included.", "optional": true }
5051 ], 5050 ],
5052 "handlers": ["browser"] 5051 "handlers": ["browser"]
5053 } 5052 }
5054 ] 5053 ]
5055 }] 5054 }]
5056 } 5055 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/sdk/CSSStyleModel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698