Web Inspector: BackendResourceDataStore for Site Isolation response bodies
Source/WebKit/WebProcess/Inspector/WebInspectorBackend.messages.in
Source/WebCore/inspector/InspectorIdentifierRegistry.h
Source/JavaScriptCore/inspector/protocol/Network.json
Under WebKit's Site Isolation, cross-origin iframes run in separate WebContent processes. Web Inspector's UIProcess hosts ProxyingNetworkAgent which proxies CDP-style commands to per-frame agents in the appropriate WebProcess. Previously, Network.getResponseBody was synchronous and relied on CachedResource references in NetworkResourcesData — a structure that does not cross process boundaries.
This commit adds BackendResourceDataStore, a WebProcess-side buffer for HTTP response metadata and content that lives in each WebProcess, copies response data at instrumentation time (decoupled from CachedResource lifetime), and is owned by WebInspectorBackend. Network.getResponseBody is converted from synchronous to asynchronous. ProxyingNetworkAgent parses frontend-provided requestId strings via parseDeterministicRequestId to extract the target WebProcess identifier, then sends an async GetResponseBody IPC message to that process.
Significance
This commit extends Web Inspector's reach across Site Isolation process boundaries by introducing a new IPC path and requestId-based routing mechanism — any trust or validation bugs here could allow the inspector frontend to exfiltrate response bodies from WebProcesses it should not reach.