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

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

Issue 967493002: DevTools: remove setLastEvaluationResult from the protocol. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebaselined Created 5 years, 9 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/promises/PromisePane.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 1066 matching lines...) Expand 10 before | Expand all | Expand 10 after
1077 "name": "enable", 1077 "name": "enable",
1078 "description": "Enables console domain, sends the messages colle cted so far to the client by means of the <code>messageAdded</code> notification ." 1078 "description": "Enables console domain, sends the messages colle cted so far to the client by means of the <code>messageAdded</code> notification ."
1079 }, 1079 },
1080 { 1080 {
1081 "name": "disable", 1081 "name": "disable",
1082 "description": "Disables console domain, prevents further consol e messages from being reported to the client." 1082 "description": "Disables console domain, prevents further consol e messages from being reported to the client."
1083 }, 1083 },
1084 { 1084 {
1085 "name": "clearMessages", 1085 "name": "clearMessages",
1086 "description": "Clears console messages collected in the browser ." 1086 "description": "Clears console messages collected in the browser ."
1087 },
1088 {
1089 "name": "setLastEvaluationResult",
1090 "parameters": [
1091 { "name": "objectId", "$ref": "Runtime.RemoteObjectId", "des cription": "Identifier of the object to set as last evaluation result." }
1092 ],
1093 "hidden": true,
1094 "description": "Sets last evaluation result in console. Can be a ccessed via <code>$_</code> command line API."
1095 } 1087 }
1096 ], 1088 ],
1097 "events": [ 1089 "events": [
1098 { 1090 {
1099 "name": "messageAdded", 1091 "name": "messageAdded",
1100 "parameters": [ 1092 "parameters": [
1101 { "name": "message", "$ref": "ConsoleMessage", "description" : "Console message that has been added." } 1093 { "name": "message", "$ref": "ConsoleMessage", "description" : "Console message that has been added." }
1102 ], 1094 ],
1103 "description": "Issued when new console message is added." 1095 "description": "Issued when new console message is added."
1104 }, 1096 },
(...skipping 3788 matching lines...) Expand 10 before | Expand all | Expand 10 after
4893 ], 4885 ],
4894 "returns": [ 4886 "returns": [
4895 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists." } 4887 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists." }
4896 ], 4888 ],
4897 "description": "Fetches the accessibility node for this DOM node , if it exists.", 4889 "description": "Fetches the accessibility node for this DOM node , if it exists.",
4898 "hidden": true 4890 "hidden": true
4899 } 4891 }
4900 ] 4892 ]
4901 }] 4893 }]
4902 } 4894 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/promises/PromisePane.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698