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

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

Issue 362773003: [DevTools] Explicitly enable/disable Page.viewportChanged protocol event. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
372 "name": "clearDeviceMetricsOverride", 372 "name": "clearDeviceMetricsOverride",
373 "description": "Clears the overriden device metrics.", 373 "description": "Clears the overriden device metrics.",
374 "hidden": true 374 "hidden": true
375 }, 375 },
376 { 376 {
377 "name": "resetScrollAndPageScaleFactor", 377 "name": "resetScrollAndPageScaleFactor",
378 "description": "Requests that scroll offsets and page scale fact or are reset to initial values.", 378 "description": "Requests that scroll offsets and page scale fact or are reset to initial values.",
379 "hidden": true 379 "hidden": true
380 }, 380 },
381 { 381 {
382 "name": "setViewportChangedEventEnabled",
383 "hidden": true,
384 "parameters": [
385 { "name": "enabled", "type": "boolean", "description": "True to enable viewportChanged event, false to disable it." }
386 ],
387 "description": "Enables/disables viewportChanged event."
388 },
389 {
382 "name": "setShowPaintRects", 390 "name": "setShowPaintRects",
383 "description": "Requests that backend shows paint rectangles", 391 "description": "Requests that backend shows paint rectangles",
384 "parameters": [ 392 "parameters": [
385 { "name": "result", "type": "boolean", "description": "True for showing paint rectangles" } 393 { "name": "result", "type": "boolean", "description": "True for showing paint rectangles" }
386 ], 394 ],
387 "hidden": true 395 "hidden": true
388 }, 396 },
389 { 397 {
390 "name": "setShowDebugBorders", 398 "name": "setShowDebugBorders",
391 "description": "Requests that backend shows debug borders on lay ers", 399 "description": "Requests that backend shows debug borders on lay ers",
(...skipping 3846 matching lines...) Expand 10 before | Expand all | Expand 10 after
4238 { 4246 {
4239 "name": "dataAvailable", 4247 "name": "dataAvailable",
4240 "parameters": [ 4248 "parameters": [
4241 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." } 4249 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." }
4242 ], 4250 ],
4243 "handlers": ["browser", "frontend"] 4251 "handlers": ["browser", "frontend"]
4244 } 4252 }
4245 ] 4253 ]
4246 }] 4254 }]
4247 } 4255 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698