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

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

Issue 1310433002: Devtools: [LayoutEditor] highlight changed value in the SSP (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 4 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
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 3208 matching lines...) Expand 10 before | Expand all | Expand 10 after
3219 { "name": "header", "$ref": "CSSStyleSheetHeader", "descript ion": "Added stylesheet metainfo." } 3219 { "name": "header", "$ref": "CSSStyleSheetHeader", "descript ion": "Added stylesheet metainfo." }
3220 ], 3220 ],
3221 "description": "Fired whenever an active document stylesheet is added." 3221 "description": "Fired whenever an active document stylesheet is added."
3222 }, 3222 },
3223 { 3223 {
3224 "name": "styleSheetRemoved", 3224 "name": "styleSheetRemoved",
3225 "parameters": [ 3225 "parameters": [
3226 { "name": "styleSheetId", "$ref": "StyleSheetId", "descripti on": "Identifier of the removed stylesheet." } 3226 { "name": "styleSheetId", "$ref": "StyleSheetId", "descripti on": "Identifier of the removed stylesheet." }
3227 ], 3227 ],
3228 "description": "Fired whenever an active document stylesheet is removed." 3228 "description": "Fired whenever an active document stylesheet is removed."
3229 },
3230 {
3231 "name": "layoutEditorChange",
pfeldman 2015/08/21 01:39:41 this name lgtm, deferring the rest to dgozman.
3232 "parameters": [
3233 { "name": "styleSheetId", "$ref": "StyleSheetId", "descripti on": "Identifier of the stylesheet where the modification occurred."},
3234 { "name": "changeRange", "$ref": "SourceRange", "description ": "Range where the modification occurred."}
3235 ]
3229 } 3236 }
3230 ] 3237 ]
3231 }, 3238 },
3232 { 3239 {
3233 "domain": "Timeline", 3240 "domain": "Timeline",
3234 "description": "Timeline domain is deprecated. Please use Tracing instea d.", 3241 "description": "Timeline domain is deprecated. Please use Tracing instea d.",
3235 "types": [ 3242 "types": [
3236 { 3243 {
3237 "id": "TimelineEvent", 3244 "id": "TimelineEvent",
3238 "type": "object", 3245 "type": "object",
(...skipping 1908 matching lines...) Expand 10 before | Expand all | Expand 10 after
5147 ], 5154 ],
5148 "returns": [ 5155 "returns": [
5149 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5156 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5150 ], 5157 ],
5151 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5158 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5152 "hidden": true 5159 "hidden": true
5153 } 5160 }
5154 ] 5161 ]
5155 }] 5162 }]
5156 } 5163 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698