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

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

Issue 2102453003: [DevTools] Move collectionEntries to internalProperties in protocol (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 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 9ae7e60cb025ac76120d97d5c4a622b69e733a51..fae8e1e8fdc7581403dbf76f4f713496784932ae 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/js_protocol.json
+++ b/third_party/WebKit/Source/platform/v8_inspector/js_protocol.json
@@ -377,16 +377,6 @@
"description": "Information about the generator object."
},
{
- "id": "CollectionEntry",
- "hidden": true,
- "type": "object",
- "properties": [
- { "name": "key", "$ref": "Runtime.RemoteObject", "optional": true, "description": "Entry key of a map-like collection, otherwise not provided." },
- { "name": "value", "$ref": "Runtime.RemoteObject", "description": "Entry value." }
- ],
- "description": "Collection entry."
- },
- {
"id": "CallFrame",
"type": "object",
"properties": [
@@ -600,17 +590,6 @@
"description": "Returns detailed information on given generator object."
},
{
- "name": "getCollectionEntries",
- "hidden": true,
- "parameters": [
- { "name": "objectId", "$ref": "Runtime.RemoteObjectId", "description": "Id of the collection to get entries for." }
- ],
- "returns": [
- { "name": "entries", "type": "array", "items": { "$ref": "CollectionEntry" }, "description": "Array of collection entries." }
- ],
- "description": "Returns entries of given collection."
- },
- {
"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