Modified: trunk/Source/WebCore/ChangeLog (150120 => 150121)
--- trunk/Source/WebCore/ChangeLog 2013-05-15 16:31:13 UTC (rev 150120)
+++ trunk/Source/WebCore/ChangeLog 2013-05-15 16:40:05 UTC (rev 150121)
@@ -1,3 +1,14 @@
+2013-05-15 Seokju Kwon <[email protected]>
+
+ Web Inspector: Get rid of addNativeSnapshotChunk and HeapSnapshotChunk from Memory domain
+ https://bugs.webkit.org/show_bug.cgi?id=116144
+
+ Reviewed by Timothy Hatcher.
+
+ No new tests, no behavior change.
+
+ * inspector/Inspector.json:
+
2013-05-15 Jocelyn Turcotte <[email protected]>
[Qt] Fix a crash under ~PingLoader when the QNAM on the page has been destroyed.
Modified: trunk/Source/WebCore/inspector/Inspector.json (150120 => 150121)
--- trunk/Source/WebCore/inspector/Inspector.json 2013-05-15 16:31:13 UTC (rev 150120)
+++ trunk/Source/WebCore/inspector/Inspector.json 2013-05-15 16:40:05 UTC (rev 150121)
@@ -54,16 +54,6 @@
{ "name": "name", "type": "string", "description": "Unique name used to identify the component that allocated this block" },
{ "name": "children", "type": "array", "optional": true, "items": { "$ref": "MemoryBlock" }}
]
- },
- {
- "id": "HeapSnapshotChunk",
- "type": "object",
- "properties": [
- { "name": "strings", "type": "array", "items": { "type": "string" }, "description": "An array of strings that were found since last update." },
- { "name": "nodes", "type": "array", "items": { "type": "integer" }, "description": "An array of nodes that were found since last update." },
- { "name": "edges", "type": "array", "items": { "type": "integer" }, "description": "An array of edges that were found since last update." },
- { "name": "baseToRealNodeId", "type": "array", "items": { "type": "integer" }, "description": "An array of integers for nodeId remapping. Even nodeId has to be mapped to the following odd nodeId." }
- ]
}
],
"commands": [
@@ -75,14 +65,6 @@
{ "name": "jsEventListeners", "type": "integer" }
]
}
- ],
- "events": [
- {
- "name": "addNativeSnapshotChunk",
- "parameters": [
- { "name": "chunk", "$ref": "HeapSnapshotChunk", "description": "A chunk of the serialized the snapshot." }
- ]
- }
]
},
{