aboutsummaryrefslogtreecommitdiff
path: root/src/webengine/urlinterceptor.h
blob: 78344309238715328e8efe5a1b53961be31a36da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef ADBLOCKINTERCEPTOR_H
#define ADBLOCKINTERCEPTOR_H

#include <QWebEngineUrlRequestInterceptor>

class AdBlockInterceptor : public QWebEngineUrlRequestInterceptor
{
    Q_OBJECT
public:
    explicit AdBlockInterceptor(QObject *parent = 0);

    void interceptRequest(QWebEngineUrlRequestInfo &info);

signals:

public slots:

private:
};

#endif // ADBLOCKINTERCEPTOR_H