summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Olsson <matthewcolsson@gmail.com>2023-02-25 10:42:57 -0700
committerLinus Groh <mail@linusgroh.de>2023-03-06 13:05:43 +0000
commit6003bcfd2d05dd8619946c935deaeb6a627b2674 (patch)
tree478322153006b189be4161e7e5a483c960abb01f
parentbab883bf8e55a7ef7d2e4155d75628c55de0d55b (diff)
downloadserenity-6003bcfd2d05dd8619946c935deaeb6a627b2674.zip
Browser: Add a missing include in InspectorWidget
-rw-r--r--Userland/Applications/Browser/InspectorWidget.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Userland/Applications/Browser/InspectorWidget.h b/Userland/Applications/Browser/InspectorWidget.h
index 095b2a4f0a..9405f7a855 100644
--- a/Userland/Applications/Browser/InspectorWidget.h
+++ b/Userland/Applications/Browser/InspectorWidget.h
@@ -15,6 +15,8 @@
#include <LibWeb/Forward.h>
#include <LibWeb/Layout/BoxModelMetrics.h>
#include <LibWebView/Forward.h>
+#include <LibWebView/OutOfProcessWebView.h>
+
namespace Browser {
class InspectorWidget final : public GUI::Widget {