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

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

Issue 900903002: DevTools: do not use Internals for inspector highlight tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: review comment addressed. Created 5 years, 10 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/core/testing/Internals.idl ('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 2629 matching lines...) Expand 10 before | Expand all | Expand 10 after
2640 { 2640 {
2641 "name": "getRelayoutBoundary", 2641 "name": "getRelayoutBoundary",
2642 "parameters": [ 2642 "parameters": [
2643 { "name": "nodeId", "$ref": "NodeId", "description": "Id of the node." } 2643 { "name": "nodeId", "$ref": "NodeId", "description": "Id of the node." }
2644 ], 2644 ],
2645 "returns": [ 2645 "returns": [
2646 { "name": "nodeId", "$ref": "NodeId", "description": "Relayo ut boundary node id for the given node." } 2646 { "name": "nodeId", "$ref": "NodeId", "description": "Relayo ut boundary node id for the given node." }
2647 ], 2647 ],
2648 "description": "Returns the id of the nearest ancestor that is a relayout boundary.", 2648 "description": "Returns the id of the nearest ancestor that is a relayout boundary.",
2649 "hidden": true 2649 "hidden": true
2650 },
2651 {
2652 "name": "getHighlightObjectForTest",
2653 "parameters": [
2654 { "name": "nodeId", "$ref": "NodeId", "description": "Id of the node to get highlight object for." }
2655 ],
2656 "returns": [
2657 { "name": "highlight", "type": "object", "description": "Hig hlight data for the node." }
2658 ],
2659 "description": "For testing.",
2660 "hidden": true
2650 } 2661 }
2651 ], 2662 ],
2652 "events": [ 2663 "events": [
2653 { 2664 {
2654 "name": "documentUpdated", 2665 "name": "documentUpdated",
2655 "description": "Fired when <code>Document</code> has been totall y updated. Node ids are no longer valid." 2666 "description": "Fired when <code>Document</code> has been totall y updated. Node ids are no longer valid."
2656 }, 2667 },
2657 { 2668 {
2658 "name": "inspectNodeRequested", 2669 "name": "inspectNodeRequested",
2659 "parameters": [ 2670 "parameters": [
(...skipping 2155 matching lines...) Expand 10 before | Expand all | Expand 10 after
4815 { 4826 {
4816 "name": "animationPlayerCreated", 4827 "name": "animationPlayerCreated",
4817 "parameters": [ 4828 "parameters": [
4818 { "name": "player", "$ref": "AnimationPlayer", "description" : "AnimationPlayer that was created." } 4829 { "name": "player", "$ref": "AnimationPlayer", "description" : "AnimationPlayer that was created." }
4819 ], 4830 ],
4820 "hidden": true 4831 "hidden": true
4821 } 4832 }
4822 ] 4833 ]
4823 }] 4834 }]
4824 } 4835 }
OLDNEW
« no previous file with comments | « Source/core/testing/Internals.idl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698