aboutsummaryrefslogtreecommitdiff
path: root/src/browser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/browser.h')
-rw-r--r--src/browser.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/browser.h b/src/browser.h
index 2b9317d..acdf9a3 100644
--- a/src/browser.h
+++ b/src/browser.h
@@ -14,7 +14,7 @@
#include "webengine/webengineprofile.h"
#include <QVector>
#include <memory>
-#include "webengine/cookieinterceptor.h"
+#include "webengine/cookiefilter.h"
#include "../plugins/interfaces.h"
class MainWindow;
@@ -60,8 +60,8 @@ private:
QHash<QString, std::shared_ptr<WebEngineProfile>> m_profiles;
std::shared_ptr<WebEngineProfile> m_defaultProfile;
- std::shared_ptr<UrlRequestInterceptor> m_urlRequestInterceptor;
- std::shared_ptr<CookieInterceptor> m_cookieInterceptor;
+ UrlRequestInterceptor* m_urlRequestInterceptor;
+ CookieFilter* m_cookieInterceptor;
std::shared_ptr<BookmarksWidget> m_bookmarksManager;
std::shared_ptr<DownloadsWidget> m_downloadManager;
};