tId], timestamp: getMonotonicTime(), type: kResourceType.Other, response: { url: request[kRequestUrl], status: response.statusCode, statusText: response.statusMessage ?? '', headers: convertHeaderObject(response.headers)[1], }, }); // Wait until the response body is consumed by user code. response.once('end', () => { Network.loadingFinished({ requestId: request[kInspectorRequestId], timestamp: getMonotonicTime(), }); }); } function enable() { dc.subscribe('http.client.request.created', onClientRequestCreated); dc.subscribe('http.client.request.error', onClientRequestError); dc.subscribe('http.client.response.finish', onClientResponseFinish); } function disable() { dc.unsubscribe('http.client.request.created', onClientRequestCreated); dc.unsubscribe('http.client.request.error', onClientRequestError); dc.unsubscribe('http.client.response.finish', onClientResponseFinish); } module.exports = { enable, disable, };