| 33 | { |
| 34 | |
| 35 | UserScript::UserScript(const QString &path, const QUrl &url, QObject *parent) : QObject(parent), Addon(), |
| 36 | m_iconFetchJob(nullptr), |
| 37 | m_path(path), |
| 38 | m_downloadUrl(url), |
| 39 | m_injectionTime(DocumentReadyTime), |
| 40 | m_shouldRunOnSubFrames(true) |
| 41 | { |
| 42 | reload(); |
| 43 | } |
| 44 | |
| 45 | void UserScript::reload() |
| 46 | { |
nothing calls this directly
no outgoing calls
no test coverage detected