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:
parent
435c4d060c
commit
de08efd891
1 changed files with 3 additions and 3 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue