#ifndef PROFILEDIALOG_H #define PROFILEDIALOG_H #include #include namespace Ui { class ProfileDialog; } class ProfileDialog : public QDialog { Q_OBJECT public: explicit ProfileDialog(QWebEngineProfile *profile, QWidget *parent = 0); ~ProfileDialog(); private slots: void updateProfile(); private: QWebEngineProfile *_profile; Ui::ProfileDialog *ui; }; #endif // PROFILEDIALOG_H