mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:57:35 +00:00
LibWebView: Move StylePropertiesModel to LibWebView
This patch has no functional changes.
This commit is contained in:
parent
b797e1e2b9
commit
962040b49c
5 changed files with 7 additions and 7 deletions
|
@ -334,7 +334,6 @@ set(SOURCES
|
|||
SVG/TagNames.cpp
|
||||
SVG/ViewBox.cpp
|
||||
Selection/Selection.cpp
|
||||
StylePropertiesModel.cpp
|
||||
UIEvents/EventNames.cpp
|
||||
UIEvents/FocusEvent.cpp
|
||||
UIEvents/KeyboardEvent.cpp
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
set(SOURCES
|
||||
DOMTreeModel.cpp
|
||||
OutOfProcessWebView.cpp
|
||||
StylePropertiesModel.cpp
|
||||
WebContentClient.cpp
|
||||
)
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#include "StylePropertiesModel.h"
|
||||
#include <AK/QuickSort.h>
|
||||
|
||||
namespace Web {
|
||||
namespace WebView {
|
||||
|
||||
StylePropertiesModel::StylePropertiesModel(JsonObject properties)
|
||||
: m_properties(move(properties))
|
|
@ -11,7 +11,7 @@
|
|||
#include <LibGUI/Model.h>
|
||||
#include <LibWeb/CSS/StyleProperties.h>
|
||||
|
||||
namespace Web {
|
||||
namespace WebView {
|
||||
|
||||
class StylePropertiesModel final : public GUI::Model {
|
||||
public:
|
Loading…
Add table
Add a link
Reference in a new issue