Messagelib

networkpluginurlinterceptorinterface.cpp
1 /*
2  SPDX-FileCopyrightText: 2016-2023 Laurent Montel <[email protected]>
3 
4  SPDX-License-Identifier: LGPL-2.0-or-later
5 */
6 
7 #include "networkpluginurlinterceptorinterface.h"
8 
9 using namespace WebEngineViewer;
10 
11 NetworkPluginUrlInterceptorInterface::NetworkPluginUrlInterceptorInterface(QObject *parent)
12  : QObject(parent)
13 {
14 }
15 
16 NetworkPluginUrlInterceptorInterface::~NetworkPluginUrlInterceptorInterface() = default;
17 
18 void NetworkPluginUrlInterceptorInterface::createActions(KActionCollection *ac)
19 {
20  Q_UNUSED(ac)
21 }
22 
23 QList<QAction *> NetworkPluginUrlInterceptorInterface::interceptorUrlActions(const WebEngineViewer::WebHitTestResult &result) const
24 {
25  Q_UNUSED(result)
26  return {};
27 }
The WebHitTestResult class.
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Sun Mar 26 2023 04:08:11 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.