From e6c01ef6e2b45576101e2ec3f010e0e1d0b2556b Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Sat, 20 May 2023 10:52:02 -0400 Subject: [PATCH] LibWebView: Replace OOPWV inclusion with ViewImplementation.h This is the header WebContentClient actually needs. Just noticed by clangd when OOPWV.h has errors that don't apply to WebContentClient at all. --- Userland/Libraries/LibWebView/WebContentClient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibWebView/WebContentClient.cpp b/Userland/Libraries/LibWebView/WebContentClient.cpp index 45315b79b9..bd6db2294c 100644 --- a/Userland/Libraries/LibWebView/WebContentClient.cpp +++ b/Userland/Libraries/LibWebView/WebContentClient.cpp @@ -5,7 +5,7 @@ */ #include "WebContentClient.h" -#include "OutOfProcessWebView.h" +#include "ViewImplementation.h" #include #include