WebContent: Rename process compositor host

The WebContent compositor host is now always backed by the compositor
process, so the private ProcessWebContentCompositorHost name no longer
distinguishes it from another implementation.

Rename the internal class to WebContentCompositorHost while keeping the
existing factory API unchanged.
This commit is contained in:
Aliaksandr Kalenik 2026-05-24 22:25:20 +02:00 committed by Alexander Kalenik
parent 435c4d060c
commit de08efd891

View file

@ -14,9 +14,9 @@
namespace WebContent {
class ProcessWebContentCompositorHost final : public Web::Compositor::CompositorHost {
class WebContentCompositorHost final : public Web::Compositor::CompositorHost {
public:
explicit ProcessWebContentCompositorHost(ConnectionFromClient& client)
explicit WebContentCompositorHost(ConnectionFromClient& client)
: m_client(client)
{
}
@ -137,7 +137,7 @@ private:
NonnullOwnPtr<Web::Compositor::CompositorHost> create_web_content_compositor_host(ConnectionFromClient& client)
{
return make<ProcessWebContentCompositorHost>(client);
return make<WebContentCompositorHost>(client);
}
}