aboutsummaryrefslogtreecommitdiff
path: root/src/widgets/BrowserApp.hpp
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2025-07-25 16:24:20 +0530
committerAkshay Nair <phenax5@gmail.com>2025-07-25 16:24:20 +0530
commit7e3b6182c4581fcb39ab1d0ef2eb07fe9fa1d8b6 (patch)
tree13808a26ad4e1f948d7fe0c042a2bdedb2658ee4 /src/widgets/BrowserApp.hpp
parent43f3261635e1667367cfd31a2f746832e94c3957 (diff)
downloadnull-browser-7e3b6182c4581fcb39ab1d0ef2eb07fe9fa1d8b6.tar.gz
null-browser-7e3b6182c4581fcb39ab1d0ef2eb07fe9fa1d8b6.zip
Remove window mediator class
Diffstat (limited to '')
-rw-r--r--src/widgets/BrowserApp.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/widgets/BrowserApp.hpp b/src/widgets/BrowserApp.hpp
index c659763..dcfe6f4 100644
--- a/src/widgets/BrowserApp.hpp
+++ b/src/widgets/BrowserApp.hpp
@@ -3,6 +3,7 @@
#include "Configuration.hpp"
#include "widgets/BrowserWindow.hpp"
#include <qlist.h>
+#include <qwebengineprofile.h>
class BrowserApp : public QObject {
Q_OBJECT
@@ -19,4 +20,6 @@ private:
Configuration &configuration;
QWebEngineProfile default_profile{"default"};
QList<QWebEngineProfile *> profiles{&default_profile};
+
+ void setup_profile(QWebEngineProfile *profile);
};