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

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

Issue 1288623004: Devtools: Remove continuous repainting feature (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase 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 | Annotate | Revision Log
« no previous file with comments | « Source/devtools/front_end/main/module.json ('k') | Source/web/DevToolsEmulator.cpp » ('j') | 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 586 matching lines...) Expand 10 before | Expand all | Expand 10 after
597 ] 597 ]
598 }, 598 },
599 { 599 {
600 "name": "setShowFPSCounter", 600 "name": "setShowFPSCounter",
601 "description": "Requests that backend shows the FPS counter", 601 "description": "Requests that backend shows the FPS counter",
602 "parameters": [ 602 "parameters": [
603 { "name": "show", "type": "boolean", "description": "True fo r showing the FPS counter" } 603 { "name": "show", "type": "boolean", "description": "True fo r showing the FPS counter" }
604 ] 604 ]
605 }, 605 },
606 { 606 {
607 "name": "setContinuousPaintingEnabled",
608 "description": "Requests that backend enables continuous paintin g",
609 "parameters": [
610 { "name": "enabled", "type": "boolean", "description": "True for enabling cointinuous painting" }
611 ]
612 },
613 {
614 "name": "setShowScrollBottleneckRects", 607 "name": "setShowScrollBottleneckRects",
615 "description": "Requests that backend shows scroll bottleneck re cts", 608 "description": "Requests that backend shows scroll bottleneck re cts",
616 "parameters": [ 609 "parameters": [
617 { "name": "show", "type": "boolean", "description": "True fo r showing scroll bottleneck rects" } 610 { "name": "show", "type": "boolean", "description": "True fo r showing scroll bottleneck rects" }
618 ] 611 ]
619 } 612 }
620 ] 613 ]
621 }, 614 },
622 { 615 {
623 "domain": "Emulation", 616 "domain": "Emulation",
(...skipping 4527 matching lines...) Expand 10 before | Expand all | Expand 10 after
5151 ], 5144 ],
5152 "returns": [ 5145 "returns": [
5153 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 5146 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
5154 ], 5147 ],
5155 "description": "Fetches the accessibility node for this DOM node , if it exists.", 5148 "description": "Fetches the accessibility node for this DOM node , if it exists.",
5156 "hidden": true 5149 "hidden": true
5157 } 5150 }
5158 ] 5151 ]
5159 }] 5152 }]
5160 } 5153 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/main/module.json ('k') | Source/web/DevToolsEmulator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698