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

Side by Side Diff: components/ui_devtools/protocol.json

Issue 2526103002: Add live updates for AshDevToolsCSSAgent (Closed)
Patch Set: Created 4 years 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 "domains": [ 2 "domains": [
3 { 3 {
4 "commands": [ 4 "commands": [
5 { 5 {
6 "description": "Enables DOM agent for the given page.", 6 "description": "Enables DOM agent for the given page.",
7 "name": "enable" 7 "name": "enable"
8 }, 8 },
9 { 9 {
10 "description": "Disables DOM agent for the given page.", 10 "description": "Disables DOM agent for the given page.",
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 "returns": [ 151 "returns": [
152 { 152 {
153 "$ref": "CSSStyle", 153 "$ref": "CSSStyle",
154 "description": "Inline style for the specified DOM n ode.", 154 "description": "Inline style for the specified DOM n ode.",
155 "name": "inlineStyle", 155 "name": "inlineStyle",
156 "optional": true 156 "optional": true
157 } 157 }
158 ] 158 ]
159 } 159 }
160 ], 160 ],
161 "events": [
162 {
163 "name": "styleSheetChanged",
164 "parameters": [
165 {
166 "name": "styleSheetId",
167 "$ref": "StyleSheetId"
168 }
169 ],
170 "description": "Fired whenever any bounds are updated for an y object."
171 }
172 ],
161 "domain": "CSS", 173 "domain": "CSS",
162 "types": [ 174 "types": [
163 { 175 {
176 "id": "StyleSheetId",
177 "type": "string"
178 },
179 {
164 "id": "CSSProperty", 180 "id": "CSSProperty",
165 "properties": [ 181 "properties": [
166 { 182 {
167 "description": "The property name.", 183 "description": "The property name.",
168 "name": "name", 184 "name": "name",
169 "type": "string" 185 "type": "string"
170 }, 186 },
171 { 187 {
172 "description": "The property value.", 188 "description": "The property value.",
173 "name": "value", 189 "name": "value",
(...skipping 26 matching lines...) Expand all
200 "type": "object" 216 "type": "object"
201 } 217 }
202 ] 218 ]
203 } 219 }
204 ], 220 ],
205 "version": { 221 "version": {
206 "major": "1", 222 "major": "1",
207 "minor": "0" 223 "minor": "0"
208 } 224 }
209 } 225 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698