diff options
| author | Akshay Nair <phenax5@gmail.com> | 2025-07-25 16:24:20 +0530 |
|---|---|---|
| committer | Akshay Nair <phenax5@gmail.com> | 2025-07-25 16:24:20 +0530 |
| commit | 7e3b6182c4581fcb39ab1d0ef2eb07fe9fa1d8b6 (patch) | |
| tree | 13808a26ad4e1f948d7fe0c042a2bdedb2658ee4 /src/widgets/BrowserApp.hpp | |
| parent | 43f3261635e1667367cfd31a2f746832e94c3957 (diff) | |
| download | null-browser-7e3b6182c4581fcb39ab1d0ef2eb07fe9fa1d8b6.tar.gz null-browser-7e3b6182c4581fcb39ab1d0ef2eb07fe9fa1d8b6.zip | |
Remove window mediator class
Diffstat (limited to '')
| -rw-r--r-- | src/widgets/BrowserApp.hpp | 3 |
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); }; |
