From 26e2926d5424f0c248892b4755c699541d46e856 Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Sat, 15 Feb 2020 14:53:56 +0200 Subject: Remove ProfileInterface Plugins should define their own specific interfaces rather than subclassing from ProfileInterface: - add Filter for QWebEngineUrlRequestInterceptor filters - add FilterPlugin for Filter loading Remove deprecated Browser::profileList() --- src/webengine/webprofile.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/webengine/webprofile.cpp') diff --git a/src/webengine/webprofile.cpp b/src/webengine/webprofile.cpp index 2cea409..5224189 100644 --- a/src/webengine/webprofile.cpp +++ b/src/webengine/webprofile.cpp @@ -26,7 +26,7 @@ WebProfile *WebProfile::defaultProfile() } WebProfile::WebProfile(const QString &name, QObject *parent) - : Profile(parent) + : QWebEngineProfile(parent) { m_name = name; @@ -39,7 +39,7 @@ WebProfile::WebProfile(const QString &name, QObject *parent) } WebProfile::WebProfile(const QString &storageName, const QString &name, QObject *parent) - : Profile(storageName, parent) + : QWebEngineProfile(storageName, parent) { m_name = name; -- cgit v1.2.1