summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/OutOfProcessWebView.h
diff options
context:
space:
mode:
authorAnotherTest <ali.mpfard@gmail.com>2020-08-24 15:33:18 +0430
committerAndreas Kling <kling@serenityos.org>2020-08-24 18:21:33 +0200
commit682b2fdb75d4e20c316e84dbe9416b2e39d5050a (patch)
treeefd7400b8dd520942883fb8343323051cd347911 /Libraries/LibWeb/OutOfProcessWebView.h
parent09ccb46980bb19ec6bf66065914e4ab59aed66e8 (diff)
downloadserenity-682b2fdb75d4e20c316e84dbe9416b2e39d5050a.zip
LibWeb: Move OutOfProcessWebView into the Web namespace
Diffstat (limited to 'Libraries/LibWeb/OutOfProcessWebView.h')
-rw-r--r--Libraries/LibWeb/OutOfProcessWebView.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Libraries/LibWeb/OutOfProcessWebView.h b/Libraries/LibWeb/OutOfProcessWebView.h
index 506f46cdaa..bdde1f7cff 100644
--- a/Libraries/LibWeb/OutOfProcessWebView.h
+++ b/Libraries/LibWeb/OutOfProcessWebView.h
@@ -31,6 +31,8 @@
#include <LibGUI/Widget.h>
#include <LibWeb/WebViewHooks.h>
+namespace Web {
+
class WebContentClient;
class OutOfProcessWebView final
@@ -83,3 +85,5 @@ private:
RefPtr<Gfx::Bitmap> m_front_bitmap;
RefPtr<Gfx::Bitmap> m_back_bitmap;
};
+
+}