interface WindowRequest (source)
Represents a request to open or close a browser window.
| abstract val url: StringThe URL which should be opened in a new window. May be empty if the request was created from JavaScript (using window.open()). | 
| abstract fun prepare(engineSession: EngineSession): UnitPrepares the provided EngineSession for the window request. This is used to attach state (e.g. a native session) to the engine session. | |
| abstract fun start(): UnitStarts the window request. | 
| class SystemWindowRequest : WindowRequestWebView-based implementation of WindowRequest. |