/* ============================================================ * The rekonq project * ============================================================ * SPDX-License-Identifier: GPL-3.0-only * Copyright (C) 2022 aqua * ============================================================ * Description: WebEngine plugin View factory * ============================================================ */ #include "webengineplugin.hpp" #include "webview.h" void WebEnginePlugin::init(RekonqSettings *) {} RekonqView *WebEnginePlugin::view(const QUrl &url) { return new WebView(url, nullptr); }