summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-08-17 16:20:47 +0200
committerAndreas Kling <kling@serenityos.org>2020-08-17 18:05:35 +0200
commitb6e18133aec38b9f0fff2770fd08b07821b2c37b (patch)
treeaee7c68032de7b5e31edab432e366ba0a6a5178e /Documentation
parent56c3748dcc8d6faf3815bbde29df741cb7b8ffc7 (diff)
downloadserenity-b6e18133aec38b9f0fff2770fd08b07821b2c37b.zip
LibWeb: Rename WebContentView => OutOfProcessWebView
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/Browser/ProcessArchitecture.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/Browser/ProcessArchitecture.md b/Documentation/Browser/ProcessArchitecture.md
index 4d630752c1..9437840c1e 100644
--- a/Documentation/Browser/ProcessArchitecture.md
+++ b/Documentation/Browser/ProcessArchitecture.md
@@ -38,9 +38,9 @@ The same basic concept applies to **ProtocolServer** and **ImageDecoder** as wel
![](classes.png)
-In the GUI application process, a `WebContentView` widget is placed somewhere in a window, and it takes care of spawning all of the helper processes, etc.
+In the GUI application process, a `OutOfProcessWebView` widget is placed somewhere in a window, and it takes care of spawning all of the helper processes, etc.
-Internally, the `WebContentView` has a `WebContentClient` object that implements the client side of the **WebContent** IPC protocol.
+Internally, the `OutOfProcessWebView` has a `WebContentClient` object that implements the client side of the **WebContent** IPC protocol.
The `WebContentClient` speaks to a `WebContent::ClientConnection` in the **WebContent** process. Internally, the `WebContent::ClientConnection` has a `WebContent::PageHost` which hosts the **LibWeb** engine's main `Web::Page` object.