1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 04:07:45 +00:00

Browser: Move InspectorWidget into the Browser namespace

This commit is contained in:
Andreas Kling 2020-05-08 21:38:30 +02:00
parent c24304dca3
commit 788293ead8
2 changed files with 9 additions and 1 deletions

View file

@ -27,6 +27,8 @@
#include <LibGUI/Widget.h>
#include <LibWeb/Forward.h>
namespace Browser {
class InspectorWidget final : public GUI::Widget {
C_OBJECT(InspectorWidget)
public:
@ -42,3 +44,5 @@ private:
RefPtr<GUI::TableView> m_computed_style_table_view;
RefPtr<Web::Document> m_document;
};
}