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

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

Issue 17848002: Web Inspector: Integrate new regionOversetChange event into inspector (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 7 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
« no previous file with comments | « Source/devtools/front_end/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": "0" }, 2 "version": { "major": "1", "minor": "0" },
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 2632 matching lines...) Expand 10 before | Expand all | Expand 10 after
2643 "description": "Fires when a Named Flow is removed: has no assoc iated content nodes and regions.", 2643 "description": "Fires when a Named Flow is removed: has no assoc iated content nodes and regions.",
2644 "hidden": true 2644 "hidden": true
2645 }, 2645 },
2646 { 2646 {
2647 "name": "regionLayoutUpdated", 2647 "name": "regionLayoutUpdated",
2648 "parameters": [ 2648 "parameters": [
2649 { "name": "namedFlow", "$ref": "NamedFlow", "description": " The Named Flow whose layout may have changed." } 2649 { "name": "namedFlow", "$ref": "NamedFlow", "description": " The Named Flow whose layout may have changed." }
2650 ], 2650 ],
2651 "description": "Fires when a Named Flow's layout may have change d.", 2651 "description": "Fires when a Named Flow's layout may have change d.",
2652 "hidden": true 2652 "hidden": true
2653 },
2654 {
2655 "name": "regionOversetChanged",
2656 "parameters": [
2657 { "name": "namedFlow", "$ref": "NamedFlow", "description": " The Named Flow containing the regions whose regionOverset values changed." }
2658 ],
2659 "description": "Fires if any of the regionOverset values changed in a Named Flow's region chain.",
2660 "hidden": true
2653 } 2661 }
2654 ] 2662 ]
2655 }, 2663 },
2656 { 2664 {
2657 "domain": "Timeline", 2665 "domain": "Timeline",
2658 "description": "Timeline provides its clients with instrumentation recor ds that are generated during the page runtime. Timeline instrumentation can be s tarted and stopped using corresponding commands. While timeline is started, it i s generating timeline event records.", 2666 "description": "Timeline provides its clients with instrumentation recor ds that are generated during the page runtime. Timeline instrumentation can be s tarted and stopped using corresponding commands. While timeline is started, it i s generating timeline event records.",
2659 "types": [ 2667 "types": [
2660 { 2668 {
2661 "id": "DOMCounters", 2669 "id": "DOMCounters",
2662 "type": "object", 2670 "type": "object",
(...skipping 1093 matching lines...) Expand 10 before | Expand all | Expand 10 after
3756 ] 3764 ]
3757 } 3765 }
3758 ], 3766 ],
3759 "events": [ 3767 "events": [
3760 { 3768 {
3761 "name": "layerTreeDidChange" 3769 "name": "layerTreeDidChange"
3762 } 3770 }
3763 ] 3771 ]
3764 }] 3772 }]
3765 } 3773 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/CSSStyleModel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698