Skip to content

Commit dd51d18

Browse files
feat(Wind): Add stub channels for BrowserViewGroup management
Expand the `StubChannels` registry in `TauriMainProcessService.ts` to include definitions for the `browserViewGroup` service. Introduce stub entries for `updateKeybindings`, `updateTheme`, `updateConfiguration`, `getBrowserViews`, `openDevTools`, and `closeDevTools`. These definitions prepare the Wind workbench service layer for upcoming integrations with the native Mountain backend, establishing the contract for browser-based view operations and developer tooling interactions.
1 parent 6596d0b commit dd51d18

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

Source/Service/TauriMainProcessService.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,14 @@ const StubChannels: Record<string, Record<string, unknown>> = {
254254

255255
mcpGateway: {},
256256

257-
browserViewGroup: {},
257+
browserViewGroup: {
258+
updateKeybindings: undefined,
259+
updateTheme: undefined,
260+
updateConfiguration: undefined,
261+
getBrowserViews: [],
262+
openDevTools: undefined,
263+
closeDevTools: undefined,
264+
},
258265

259266
// Fix: terminals.windows - IExternalTerminalService.getDefaultTerminalForPlatforms()
260267
externalTerminal: {

0 commit comments

Comments
 (0)