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

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

Issue 478943002: DevTools: fix protocol.json Page.colorPicked event (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 | « no previous file | 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": "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 668 matching lines...) Expand 10 before | Expand all | Expand 10 after
679 "description": "Fired when a visible page viewport has changed." , 679 "description": "Fired when a visible page viewport has changed." ,
680 "parameters": [ 680 "parameters": [
681 { "name": "viewport", "$ref": "Viewport", "description": "Vi ewport description." } 681 { "name": "viewport", "$ref": "Viewport", "description": "Vi ewport description." }
682 ], 682 ],
683 "hidden": true 683 "hidden": true
684 }, 684 },
685 { 685 {
686 "name": "colorPicked", 686 "name": "colorPicked",
687 "description": "Fired when a color has been picked.", 687 "description": "Fired when a color has been picked.",
688 "parameters": [ 688 "parameters": [
689 { "name": "color", "type": "string", "description": "Color" } 689 { "name": "color", "$ref": "DOM.RGBA", "description": "RGBA of the picked color." }
690 ], 690 ],
691 "hidden": true, 691 "hidden": true,
692 "handlers": ["browser"] 692 "handlers": ["browser"]
693 } 693 }
694 ] 694 ]
695 }, 695 },
696 { 696 {
697 "domain": "Runtime", 697 "domain": "Runtime",
698 "description": "Runtime domain exposes JavaScript runtime by means of re mote evaluation and mirror objects. Evaluation results are returned as mirror ob ject that expose object type, string representation and unique identifier that c an be used for further object reference. Original objects are maintained in memo ry unless they are either explicitly released or are released along with the oth er objects in their object group.", 698 "description": "Runtime domain exposes JavaScript runtime by means of re mote evaluation and mirror objects. Evaluation results are returned as mirror ob ject that expose object type, string representation and unique identifier that c an be used for further object reference. Original objects are maintained in memo ry unless they are either explicitly released or are released along with the oth er objects in their object group.",
699 "types": [ 699 "types": [
(...skipping 3614 matching lines...) Expand 10 before | Expand all | Expand 10 after
4314 { 4314 {
4315 "name": "dataAvailable", 4315 "name": "dataAvailable",
4316 "parameters": [ 4316 "parameters": [
4317 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." } 4317 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." }
4318 ], 4318 ],
4319 "handlers": ["browser", "frontend"] 4319 "handlers": ["browser", "frontend"]
4320 } 4320 }
4321 ] 4321 ]
4322 }] 4322 }]
4323 } 4323 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698