WhiteBoard
This page documents the WhiteBoard CDP domain supported by Lynx DevTool.
This generated reference is still being completed.
- CDP events are not included yet.
- Some Lynx extensions are listed but do not yet have detailed documentation.
- Method descriptions are not automatically verified against the implementation and may be incomplete or inaccurate.
Verify behavior against the implementation and the linked upstream CDP reference before relying on it.
Overview
- Scope:
instance - CDP domain: Lynx-specific
Lynx Extensions
WhiteBoard.clear
Clears all global WhiteBoard shared-data entries.
- Origin:
lynx-extension - Source:
devtool/lynx_devtool/agent/domain_agent/inspector_white_board_agent.cc
Parameters
No parameters.
Returns
No return fields.
Events
- WhiteBoard.onSharedDataCleared
Notes
- 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.
Examples
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
Parameters
No parameters.
Returns
No return fields.
Notes
- 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.
Examples
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
Parameters
No parameters.
Returns
No return fields.
Notes
- 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.
Examples
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
Parameters
No parameters.
Returns
Notes
- 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.
Examples
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
Parameters
Returns
No return fields.
Events
- WhiteBoard.onSharedDataRemoved
Notes
- 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.
Examples
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
Parameters
Returns
No return fields.
Events
- WhiteBoard.onSharedDataAdded
- WhiteBoard.onSharedDataUpdated
Notes
- 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.
Examples
Set a string value
Request:
Response:
Shared-data added notification
Response:
Invalid JSON value
Request:
Response: