WebContent: Illustrate multi- vs single-process diffs in documentation

This commit is contained in:
Andreas Kling 2020-07-04 23:31:28 +02:00
commit 7cb7bcb924
Notes: sideshowbarker 2024-07-19 05:10:22 +09:00

View file

@ -1,12 +1,27 @@
Server Client
=====================
Multi-process model:
=====================
WebContent GUI process (WebContentView embedder)
Server Client
WebContentView
WebContent::ClientConnection <---> WebContentClient
WebContent::PageHost
WebContent GUI process (WebContentView embedder)
WebContentView (this is a GUI::Widget)
WebContent::ClientConnection <---> WebContentClient
WebContent::PageHost (Web::PageClient)
Web::Page
Web::Frame
Web::Document
..
=====================
Single process model:
=====================
Web::PageView (this is a GUI::Widget, and also a Web::PageClient)
Web::Page
Web::Frame
Web::Document
..