aboutsummaryrefslogtreecommitdiff
path: root/src/webengine/urlinterceptor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/webengine/urlinterceptor.h')
-rw-r--r--src/webengine/urlinterceptor.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/webengine/urlinterceptor.h b/src/webengine/urlinterceptor.h
index cf1597c..1ff786b 100644
--- a/src/webengine/urlinterceptor.h
+++ b/src/webengine/urlinterceptor.h
@@ -11,26 +11,22 @@
#include <QWebEngineUrlRequestInterceptor>
#include <vector>
-#include "filter/filter.h"
+#include "hostrule.h"
class UrlRequestInterceptor : public QWebEngineUrlRequestInterceptor
{
Q_OBJECT
public:
explicit UrlRequestInterceptor(const QString &path, QObject *parent = nullptr);
- //~UrlRequestInterceptor();
+ ~UrlRequestInterceptor();
void interceptRequest(QWebEngineUrlRequestInfo &info);
-signals:
-
public slots:
+ int parseHostfile(const QString &filename);
private:
-
- std::vector<FilterRule> m_rules;
+ std::vector<HostRule*> m_rules;
};
-bool shouldBlock(const QUrl &url, const QString &test);
-
#endif // URLREQUESTINTERCEPTOR_H