1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-09 17:44:56 +09:00

LibWebView: Define the OOPWV's superclass in one place

This lets us change it later without having to remember to update a
bunch of uses. (More are coming in the next commit.)
This commit is contained in:
Sam Atkins 2022-11-21 15:54:18 +00:00 committed by Andreas Kling
parent b517032354
commit 2654bfead4
Notes: sideshowbarker 2024-07-17 04:05:23 +09:00
2 changed files with 5 additions and 3 deletions

View file

@ -26,6 +26,8 @@ class OutOfProcessWebView final
, public ViewImplementation {
C_OBJECT(OutOfProcessWebView);
using Super = GUI::AbstractScrollableWidget;
public:
virtual ~OutOfProcessWebView() override;