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

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

Issue 333153003: DevTools: Revert stepping over/out on a call frame backend code. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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/inspector/PageDebuggerAgent.cpp ('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 3041 matching lines...) Expand 10 before | Expand all | Expand 10 after
3052 { 3052 {
3053 "name": "continueToLocation", 3053 "name": "continueToLocation",
3054 "parameters": [ 3054 "parameters": [
3055 { "name": "location", "$ref": "Location", "description": "Lo cation to continue to." }, 3055 { "name": "location", "$ref": "Location", "description": "Lo cation to continue to." },
3056 { "name": "interstatementLocation", "type": "boolean", "opti onal": true, "hidden": true, "description": "Allows breakpoints at the intemedia te positions inside statements." } 3056 { "name": "interstatementLocation", "type": "boolean", "opti onal": true, "hidden": true, "description": "Allows breakpoints at the intemedia te positions inside statements." }
3057 ], 3057 ],
3058 "description": "Continues execution until specific location is r eached." 3058 "description": "Continues execution until specific location is r eached."
3059 }, 3059 },
3060 { 3060 {
3061 "name": "stepOver", 3061 "name": "stepOver",
3062 "parameters": [ 3062 "description": "Steps over the statement."
3063 { "name": "callFrameId", "optional": true, "$ref": "CallFram eId", "description": "A frame where the step must be performed." }
3064 ],
3065 "description": "Steps over the statement. Moves execution to the next statement in the top call frame or in the specified one."
3066 }, 3063 },
3067 { 3064 {
3068 "name": "stepInto", 3065 "name": "stepInto",
3069 "description": "Steps into the function call." 3066 "description": "Steps into the function call."
3070 }, 3067 },
3071 { 3068 {
3072 "name": "stepOut", 3069 "name": "stepOut",
3073 "parameters": [ 3070 "description": "Steps out of the function call."
3074 { "name": "callFrameId", "optional": true, "$ref": "CallFram eId", "description": "A frame where the step must be performed." }
3075 ],
3076 "description": "Steps out of the top call frame or the specified one."
3077 }, 3071 },
3078 { 3072 {
3079 "name": "pause", 3073 "name": "pause",
3080 "description": "Stops on the next JavaScript statement." 3074 "description": "Stops on the next JavaScript statement."
3081 }, 3075 },
3082 { 3076 {
3083 "name": "resume", 3077 "name": "resume",
3084 "description": "Resumes JavaScript execution." 3078 "description": "Resumes JavaScript execution."
3085 }, 3079 },
3086 { 3080 {
(...skipping 1105 matching lines...) Expand 10 before | Expand all | Expand 10 after
4192 { 4186 {
4193 "name": "dataAvailable", 4187 "name": "dataAvailable",
4194 "parameters": [ 4188 "parameters": [
4195 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." } 4189 {"name": "value", "type": "array", "items": { "$ref": "Power Event" }, "description": "List of power events." }
4196 ], 4190 ],
4197 "handlers": ["browser", "frontend"] 4191 "handlers": ["browser", "frontend"]
4198 } 4192 }
4199 ] 4193 ]
4200 }] 4194 }]
4201 } 4195 }
OLDNEW
« no previous file with comments | « Source/core/inspector/PageDebuggerAgent.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698