LibWebView+WebContent: Inform WebContent process if browser is headless

This commit is contained in:
Tim Ledbetter 2024-12-09 21:51:19 +00:00 committed by Tim Flynn
commit e764df15eb
Notes: github-actions[bot] 2024-12-10 18:32:56 +00:00
9 changed files with 31 additions and 0 deletions

View file

@ -82,6 +82,7 @@ public:
virtual bool is_ready_to_paint() const override { return true; }
virtual DisplayListPlayerType display_list_player_type() const override { return m_host_page->client().display_list_player_type(); }
virtual bool is_headless() const override { return m_host_page->client().is_headless(); }
private:
explicit SVGPageClient(Page& host_page)