| 23 | #include <QNetworkReply> |
| 24 | |
| 25 | PluginFactory::PluginFactory(QObject *parent) : |
| 26 | QWebPluginFactory(parent) |
| 27 | { |
| 28 | manager = new QNetworkAccessManager(this); |
| 29 | } |
| 30 | |
| 31 | QList<QWebPluginFactory::Plugin> PluginFactory::plugins() const |
| 32 | { |
nothing calls this directly
no outgoing calls
no test coverage detected