Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/src/lib/platform/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ export interface PlatformAdapter {
// URL; absent or null falls back to ws://127.0.0.1:<port>.
getAgentBrowserStreamUrl?(port: number): Promise<string | null>;

// iframe surface support (see docs/specs/dor-browser.md → "The transparent
// proxy"). Stands up a loopback proxy in front of a `dor iframe` target and
// iframe surface support (see docs/specs/dor-browser.md → "Iframe
// Renderer"). Stands up a loopback proxy in front of a `dor iframe` target and
// returns the proxy URL the panel should frame, or a structured reason it
// could not. Absent on hosts with no process to run a proxy (e.g. the web
// host), where the panel falls back to a raw, uninstrumented `<iframe>`.
Expand Down
4 changes: 2 additions & 2 deletions vscode-ext/src/iframe-proxy-host.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
* VS Code extension-host binding for the iframe transparent proxy.
*
* The proxy itself is host-agnostic and lives in `lib/src/host/iframe-proxy.ts`
* (shared with the Tauri sidecar — see docs/specs/dor-browser.md → "The
* transparent proxy"). This file only injects the VS Code logger; the
* (shared with the Tauri sidecar — see docs/specs/dor-browser.md → "Iframe
* Renderer"). This file only injects the VS Code logger; the
* message-router calls `createIframeProxyUrl` exactly as before.
*/
import { createIframeProxyUrl as createProxy } from '../../lib/src/host/iframe-proxy';
Expand Down
Loading