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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/js_protocol.json

Issue 2112673003: [DevTools] Move suspended generator location to internal properties (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed comments Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/Source/platform/v8_inspector/debugger_script_externs.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/v8_inspector/js_protocol.json
diff --git a/third_party/WebKit/Source/platform/v8_inspector/js_protocol.json b/third_party/WebKit/Source/platform/v8_inspector/js_protocol.json
index 6ab355862f4ea5500c4ba45ff0dbb34e80f0f745..9cbc93619ae70e3615ce43ba367f8d27ebee905d 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/js_protocol.json
+++ b/third_party/WebKit/Source/platform/v8_inspector/js_protocol.json
@@ -365,18 +365,6 @@
"description": "Information about the function."
},
{
- "id": "GeneratorObjectDetails",
- "hidden": true,
- "type": "object",
- "properties": [
- { "name": "function", "$ref": "Runtime.RemoteObject", "description": "Generator function." },
- { "name": "functionName", "type": "string", "description": "Name of the generator function." },
- { "name": "status", "type": "string", "enum": ["running", "suspended", "closed"], "description": "Current generator object status." },
- { "name": "location", "$ref": "Location", "optional": true, "description": "If suspended, location where generator function was suspended (e.g. location of the last 'yield'). Otherwise, location of the generator function." }
- ],
- "description": "Information about the generator object."
- },
- {
"id": "CallFrame",
"type": "object",
"properties": [
@@ -579,17 +567,6 @@
"description": "Returns detailed information on given function."
},
{
- "name": "getGeneratorObjectDetails",
- "hidden": true,
- "parameters": [
- { "name": "objectId", "$ref": "Runtime.RemoteObjectId", "description": "Id of the generator object to get details for." }
- ],
- "returns": [
- { "name": "details", "$ref": "GeneratorObjectDetails", "description": "Information about the generator object." }
- ],
- "description": "Returns detailed information on given generator object."
- },
- {
"name": "setPauseOnExceptions",
"parameters": [
{ "name": "state", "type": "string", "enum": ["none", "uncaught", "all"], "description": "Pause on exceptions mode." }
« no previous file with comments | « third_party/WebKit/Source/platform/v8_inspector/debugger_script_externs.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698