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

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

Issue 21049007: DevTools: Drop CSS Selector Profiler (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove forgotten test Created 7 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/ProfilesPanel.js ('k') | Source/devtools/scripts/compile_frontend.py » ('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": "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 2563 matching lines...) Expand 10 before | Expand all | Expand 10 after
2574 }, 2574 },
2575 { 2575 {
2576 "name": "forcePseudoState", 2576 "name": "forcePseudoState",
2577 "parameters": [ 2577 "parameters": [
2578 { "name": "nodeId", "$ref": "DOM.NodeId", "description": "Th e element id for which to force the pseudo state." }, 2578 { "name": "nodeId", "$ref": "DOM.NodeId", "description": "Th e element id for which to force the pseudo state." },
2579 { "name": "forcedPseudoClasses", "type": "array", "items": { "type": "string", "enum": ["active", "focus", "hover", "visited"] }, "descripti on": "Element pseudo classes to force when computing the element's style." } 2579 { "name": "forcedPseudoClasses", "type": "array", "items": { "type": "string", "enum": ["active", "focus", "hover", "visited"] }, "descripti on": "Element pseudo classes to force when computing the element's style." }
2580 ], 2580 ],
2581 "description": "Ensures that the given node will have specified pseudo-classes whenever its style is computed by the browser." 2581 "description": "Ensures that the given node will have specified pseudo-classes whenever its style is computed by the browser."
2582 }, 2582 },
2583 { 2583 {
2584 "name": "startSelectorProfiler"
2585 },
2586 {
2587 "name": "stopSelectorProfiler",
2588 "returns": [
2589 { "name": "profile", "$ref": "SelectorProfile" }
2590 ]
2591 },
2592 {
2593 "name": "getNamedFlowCollection", 2584 "name": "getNamedFlowCollection",
2594 "parameters": [ 2585 "parameters": [
2595 { "name": "documentNodeId", "$ref": "DOM.NodeId", "descripti on": "The document node id for which to get the Named Flow Collection." } 2586 { "name": "documentNodeId", "$ref": "DOM.NodeId", "descripti on": "The document node id for which to get the Named Flow Collection." }
2596 ], 2587 ],
2597 "returns": [ 2588 "returns": [
2598 { "name": "namedFlows", "type": "array", "items": { "$ref": "NamedFlow" }, "description": "An array containing the Named Flows in the docume nt." } 2589 { "name": "namedFlows", "type": "array", "items": { "$ref": "NamedFlow" }, "description": "An array containing the Named Flows in the docume nt." }
2599 ], 2590 ],
2600 "description": "Returns the Named Flows from the document.", 2591 "description": "Returns the Named Flows from the document.",
2601 "hidden": true 2592 "hidden": true
2602 } 2593 }
(...skipping 1250 matching lines...) Expand 10 before | Expand all | Expand 10 after
3853 "parameters": [ 3844 "parameters": [
3854 { "name": "value", "type": "array", "items": { "type": "obje ct" } } 3845 { "name": "value", "type": "array", "items": { "type": "obje ct" } }
3855 ] 3846 ]
3856 }, 3847 },
3857 { 3848 {
3858 "name": "tracingComplete" 3849 "name": "tracingComplete"
3859 } 3850 }
3860 ] 3851 ]
3861 }] 3852 }]
3862 } 3853 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/ProfilesPanel.js ('k') | Source/devtools/scripts/compile_frontend.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698