LibWeb: Move OutOfProcessWebView into the Web namespace

This commit is contained in:
AnotherTest 2020-08-24 15:33:18 +04:30 committed by Andreas Kling
commit 682b2fdb75
Notes: sideshowbarker 2024-07-19 03:12:42 +09:00
9 changed files with 24 additions and 10 deletions

View file

@ -31,6 +31,8 @@
#include <WebContent/WebContentClientEndpoint.h>
#include <WebContent/WebContentServerEndpoint.h>
namespace Web {
class OutOfProcessWebView;
class WebContentClient
@ -61,3 +63,5 @@ private:
OutOfProcessWebView& m_view;
};
}