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

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

Issue 475233003: DevTools: front-end part of color picker (behind experiment). (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 | « Source/devtools/front_end/sdk/ResourceTreeModel.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": "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 532 matching lines...) Expand 10 before | Expand all | Expand 10 after
543 "parameters": [ 543 "parameters": [
544 { "name": "securityOrigin", "type": "string", "description": "Security origin quota and usage requested for" } 544 { "name": "securityOrigin", "type": "string", "description": "Security origin quota and usage requested for" }
545 ], 545 ],
546 "returns": [ 546 "returns": [
547 { "name": "quota", "$ref": "Quota", "description": "Quota fo r requested security origin." }, 547 { "name": "quota", "$ref": "Quota", "description": "Quota fo r requested security origin." },
548 { "name": "usage", "$ref": "Usage", "description": "Current usage for requested security origin." } 548 { "name": "usage", "$ref": "Usage", "description": "Current usage for requested security origin." }
549 ], 549 ],
550 "description": "Queries more detailed quota and usage data than Storage API provides.", 550 "description": "Queries more detailed quota and usage data than Storage API provides.",
551 "hidden": true, 551 "hidden": true,
552 "handlers": ["browser"] 552 "handlers": ["browser"]
553 },
554 {
555 "name": "setColorPickerEnabled",
556 "parameters": [
557 { "name": "enabled", "type": "boolean", "description": "Show s / hides color picker" }
558 ],
559 "description": "Shows / hides color picker",
560 "hidden": true,
561 "handlers": ["browser"]
553 } 562 }
554 ], 563 ],
555 "events": [ 564 "events": [
556 { 565 {
557 "name": "domContentEventFired", 566 "name": "domContentEventFired",
558 "parameters": [ 567 "parameters": [
559 { "name": "timestamp", "type": "number" } 568 { "name": "timestamp", "type": "number" }
560 ] 569 ]
561 }, 570 },
562 { 571 {
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
664 "hidden": true, 673 "hidden": true,
665 "handlers": ["browser"] 674 "handlers": ["browser"]
666 }, 675 },
667 { 676 {
668 "name": "viewportChanged", 677 "name": "viewportChanged",
669 "description": "Fired when a visible page viewport has changed." , 678 "description": "Fired when a visible page viewport has changed." ,
670 "parameters": [ 679 "parameters": [
671 { "name": "viewport", "$ref": "Viewport", "description": "Vi ewport description." } 680 { "name": "viewport", "$ref": "Viewport", "description": "Vi ewport description." }
672 ], 681 ],
673 "hidden": true 682 "hidden": true
683 },
684 {
685 "name": "colorPicked",
686 "description": "Fired when a color has been picked.",
687 "parameters": [
688 { "name": "color", "type": "string", "description": "Color" }
689 ],
690 "hidden": true,
691 "handlers": ["browser"]
vsevik 2014/08/15 16:36:00 Is this needed?
pfeldman 2014/08/15 16:37:56 Yep. It is issued from the browser.
674 } 692 }
675 ] 693 ]
676 }, 694 },
677 { 695 {
678 "domain": "Runtime", 696 "domain": "Runtime",
679 "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.", 697 "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.",
680 "types": [ 698 "types": [
681 { 699 {
682 "id": "RemoteObjectId", 700 "id": "RemoteObjectId",
683 "type": "string", 701 "type": "string",
(...skipping 3611 matching lines...) Expand 10 before | Expand all | Expand 10 after
4295 { 4313 {
4296 "name": "dataAvailable", 4314 "name": "dataAvailable",
4297 "parameters": [ 4315 "parameters": [
4298 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." } 4316 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." }
4299 ], 4317 ],
4300 "handlers": ["browser", "frontend"] 4318 "handlers": ["browser", "frontend"]
4301 } 4319 }
4302 ] 4320 ]
4303 }] 4321 }]
4304 } 4322 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/sdk/ResourceTreeModel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698