File indexing completed on 2025-01-26 04:57:24
0001 /* 0002 SPDX-FileCopyrightText: 2016-2024 Laurent Montel <montel@kde.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #include "networkpluginurlinterceptorinterface.h" 0008 0009 using namespace WebEngineViewer; 0010 0011 NetworkPluginUrlInterceptorInterface::NetworkPluginUrlInterceptorInterface(QObject *parent) 0012 : QObject(parent) 0013 { 0014 } 0015 0016 NetworkPluginUrlInterceptorInterface::~NetworkPluginUrlInterceptorInterface() = default; 0017 0018 void NetworkPluginUrlInterceptorInterface::createActions(KActionCollection *ac) 0019 { 0020 Q_UNUSED(ac) 0021 } 0022 0023 QList<QAction *> NetworkPluginUrlInterceptorInterface::interceptorUrlActions(const WebEngineViewer::WebHitTestResult &result) const 0024 { 0025 Q_UNUSED(result) 0026 return {}; 0027 } 0028 0029 #include "moc_networkpluginurlinterceptorinterface.cpp"