WhiteBoard
本页面介绍 Lynx DevTool 支持的 WhiteBoard CDP domain。
此生成的参考文档仍在完善中。
- CDP events 尚未包含。
- 部分 Lynx 扩展已列出,但尚未提供详细文档。
- 方法说明尚未根据实现自动校验,可能不完整或不准确。
在依赖本参考前,请根据实现及所链接的 upstream CDP reference 验证实际行为。
概览
- 作用域:
instance - CDP domain:Lynx 专有
Lynx 扩展
WhiteBoard.clear
Clears all global WhiteBoard shared-data entries.
- Origin:
lynx-extension - Source:
devtool/lynx_devtool/agent/domain_agent/inspector_white_board_agent.cc
参数
无参数。
返回字段
无返回字段。
事件
- WhiteBoard.onSharedDataCleared
备注
- Requires WhiteBoard.enable first. If the delegate is disabled, the current handler returns without sending a CDP response.
- Dispatches through LynxDevToolMediator to the TASM executor when available, otherwise to the JavaScript debugger.
- If neither backend task runner is available, the mediator does not dispatch the request and no explicit CDP response is sent.
- Returns an empty result object on success.
- Returns a CDP error with code -32000 and message Failed to clear shared data! when the WhiteBoard instance is unavailable.
- On success, enabled delegates receive WhiteBoard.onSharedDataCleared without params.
- If no WhiteBoard inspector delegate is attached, the current handler does not send an explicit CDP response.
示例
Clear shared data
Request:
Response:
Shared-data cleared notification
Response:
WhiteBoard.disable
Disables WhiteBoard shared-data inspection for the current target.
- Origin:
lynx-extension - Source:
devtool/lynx_devtool/agent/domain_agent/inspector_white_board_agent.cc
参数
无参数。
返回字段
无返回字段。
备注
- Dispatches through LynxDevToolMediator to the TASM executor when available, otherwise to the JavaScript debugger.
- If neither backend task runner is available, the mediator does not dispatch the request and no explicit CDP response is sent.
- Sets the WhiteBoard inspector delegate enabled flag to false.
- Returns an empty result object.
- After disable succeeds, WhiteBoard data methods that require an enabled delegate return no explicit CDP response.
- If no WhiteBoard inspector delegate is attached, the current handler does not send an explicit CDP response.
示例
Disable WhiteBoard inspection
Request:
Response:
WhiteBoard.enable
Enables WhiteBoard shared-data inspection for the current target.
- Origin:
lynx-extension - Source:
devtool/lynx_devtool/agent/domain_agent/inspector_white_board_agent.cc
参数
无参数。
返回字段
无返回字段。
备注
- Dispatches through LynxDevToolMediator to the TASM executor when available, otherwise to the JavaScript debugger.
- If neither backend task runner is available, the mediator does not dispatch the request and no explicit CDP response is sent.
- Sets the WhiteBoard inspector delegate enabled flag to true.
- Returns an empty result object.
- After enable succeeds, WhiteBoard shared-data change events can be delivered to this target.
- If no WhiteBoard inspector delegate is attached, the current handler does not send an explicit CDP response.
示例
Enable WhiteBoard inspection
Request:
Response:
WhiteBoard.getSharedData
Returns all global WhiteBoard shared-data entries.
- Origin:
lynx-extension - Source:
devtool/lynx_devtool/agent/domain_agent/inspector_white_board_agent.cc
参数
无参数。
返回字段
备注
- Requires WhiteBoard.enable first. If the delegate is disabled, the current handler returns without sending a CDP response.
- Dispatches through LynxDevToolMediator to the TASM executor when available, otherwise to the JavaScript debugger.
- If neither backend task runner is available, the mediator does not dispatch the request and no explicit CDP response is sent.
- The native implementation does not read request params.
- Values are returned as serialized JSON text strings.
- Returns a CDP error with code -32000 and message Failed to get shared data! when the WhiteBoard instance is unavailable.
- If no WhiteBoard inspector delegate is attached, the current handler does not send an explicit CDP response.
示例
Get all shared data
Request:
Response:
WhiteBoard.removeSharedData
Removes one global WhiteBoard shared-data entry.
- Origin:
lynx-extension - Source:
devtool/lynx_devtool/agent/domain_agent/inspector_white_board_agent.cc
参数
返回字段
无返回字段。
事件
- WhiteBoard.onSharedDataRemoved
备注
- Requires WhiteBoard.enable first. If the delegate is disabled, the current handler returns without sending a CDP response.
- Dispatches through LynxDevToolMediator to the TASM executor when available, otherwise to the JavaScript debugger.
- If neither backend task runner is available, the mediator does not dispatch the request and no explicit CDP response is sent.
- Returns an empty result object when the key exists and is removed.
- Returns a CDP error with code -32602 and message The key does not exist! when the key is not present.
- Returns a CDP error with code -32000 and message Failed to remove shared data! when the WhiteBoard instance is unavailable.
- On success, enabled delegates receive WhiteBoard.onSharedDataRemoved with params.key.
- If no WhiteBoard inspector delegate is attached, the current handler does not send an explicit CDP response.
示例
Remove one shared-data entry
Request:
Response:
Shared-data removed notification
Response:
Missing key
Request:
Response:
WhiteBoard.setSharedData
Writes one global WhiteBoard shared-data entry.
- Origin:
lynx-extension - Source:
devtool/lynx_devtool/agent/domain_agent/inspector_white_board_agent.cc
参数
返回字段
无返回字段。
事件
- WhiteBoard.onSharedDataAdded
- WhiteBoard.onSharedDataUpdated
备注
- Requires WhiteBoard.enable first. If the delegate is disabled, the current handler returns without sending a CDP response.
- Dispatches through LynxDevToolMediator to the TASM executor when available, otherwise to the JavaScript debugger.
- If neither backend task runner is available, the mediator does not dispatch the request and no explicit CDP response is sent.
- The value param must be a string containing valid JSON text. For a string value, include the JSON string quotes inside the value text.
- Returns an empty result object on success.
- Returns a CDP error with code -32602 and message The value must be a valid JSON string! when value cannot be parsed as JSON.
- Returns a CDP error with code -32000 and message Failed to set shared data! when the WhiteBoard instance is unavailable.
- The shared-data store emits WhiteBoard.onSharedDataAdded for a new key and WhiteBoard.onSharedDataUpdated for an existing key.
- The add event params contain key and value. The update event params contain key and newValue.
- If no WhiteBoard inspector delegate is attached, the current handler does not send an explicit CDP response.
示例
Set a string value
Request:
Response:
Shared-data added notification
Response:
Invalid JSON value
Request:
Response: