1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:07:35 +00:00

LibWebView+Ladybird: Remove now-unused WebView TreeModel

This was used to provided base functionality for model-based chromes for
viewing the DOM and accessibility trees. All chromes now use the WebView
inspector model for those trees, thus this class is unused.
This commit is contained in:
Timothy Flynn 2023-11-23 20:08:07 -05:00 committed by Andreas Kling
parent 84c4eef565
commit c03b69e664
6 changed files with 0 additions and 333 deletions

View file

@ -15,7 +15,6 @@
#include <LibWeb/CSS/Selector.h>
#include <LibWebView/ModelIndex.h>
#include <LibWebView/PropertyTableModel.h>
#include <LibWebView/TreeModel.h>
#include <QAbstractItemModel>
namespace Ladybird {
@ -104,7 +103,6 @@ private:
ModelType m_model;
};
using TreeModel = ModelAdapter<WebView::TreeModel>;
using PropertyTableModel = ModelAdapter<WebView::PropertyTableModel>;
}