| 8 | #include <QUrl> |
| 9 | |
| 10 | AdBlockRequestHandler::AdBlockRequestHandler(AdBlockFilterContainer &filterContainer, AdBlockLog *log, QObject *parent) : |
| 11 | QObject(parent), |
| 12 | m_filterContainer(filterContainer), |
| 13 | m_log(log), |
| 14 | m_numRequestsBlocked(0), |
| 15 | m_pageAdBlockCount() |
| 16 | { |
| 17 | } |
| 18 | |
| 19 | void AdBlockRequestHandler::loadStarted(const QUrl &url) |
| 20 | { |
nothing calls this directly
no outgoing calls
no test coverage detected