LibWeb: Rename WebContentView => OutOfProcessWebView

This commit is contained in:
Andreas Kling 2020-08-17 16:20:47 +02:00
commit b6e18133ae
Notes: sideshowbarker 2024-07-19 03:29:08 +09:00
10 changed files with 46 additions and 46 deletions

View file

@ -25,10 +25,10 @@
*/
#include "WebContentClient.h"
#include "WebContentView.h"
#include "OutOfProcessWebView.h"
#include <AK/SharedBuffer.h>
WebContentClient::WebContentClient(WebContentView& view)
WebContentClient::WebContentClient(OutOfProcessWebView& view)
: IPC::ServerConnection<WebContentClientEndpoint, WebContentServerEndpoint>(*this, "/tmp/portal/webcontent")
, m_view(view)
{