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

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

Issue 2122423002: [DevTools] Remove functionDetails from protocol.json (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove-generator-details-from-protocol
Patch Set: a 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
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 1a630c2308eeb8388c0999b91749142c1ec7c552..4ebebd417b1b06f84811e952547e3dcff3f5a6d4 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/js_protocol.json
+++ b/third_party/WebKit/Source/platform/v8_inspector/js_protocol.json
@@ -376,18 +376,6 @@
"description": "Location in the source code."
},
{
- "id": "FunctionDetails",
- "hidden": true,
- "type": "object",
- "properties": [
- { "name": "location", "$ref": "Location", "optional": true, "description": "Location of the function, none for native functions." },
- { "name": "functionName", "type": "string", "description": "Name of the function." },
- { "name": "isGenerator", "type": "boolean", "description": "Whether this is a generator function." },
- { "name": "scopeChain", "type": "array", "optional": true, "items": { "$ref": "Scope" }, "description": "Scope chain for this closure." }
- ],
- "description": "Information about the function."
- },
- {
"id": "CallFrame",
"type": "object",
"properties": [
@@ -579,17 +567,6 @@
"description": "Returns source for the script with given id."
},
{
- "name": "getFunctionDetails",
- "hidden": true,
- "parameters": [
- { "name": "functionId", "$ref": "Runtime.RemoteObjectId", "description": "Id of the function to get details for." }
- ],
- "returns": [
- { "name": "details", "$ref": "FunctionDetails", "description": "Information about the function." }
- ],
- "description": "Returns detailed information on given function."
- },
- {
"name": "setPauseOnExceptions",
"parameters": [
{ "name": "state", "type": "string", "enum": ["none", "uncaught", "all"], "description": "Pause on exceptions mode." }

Powered by Google App Engine
This is Rietveld 408576698