mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-08 00:39:59 +00:00
99ceb03a1c
This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
30 lines
592 B
C++
30 lines
592 B
C++
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#ifdef YUZU_USE_QT_WEB_ENGINE
|
|
|
|
#include <QObject>
|
|
#include <QWebEngineUrlRequestInterceptor>
|
|
|
|
class UrlRequestInterceptor : public QWebEngineUrlRequestInterceptor {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit UrlRequestInterceptor(QObject* p = nullptr);
|
|
~UrlRequestInterceptor() override;
|
|
|
|
void interceptRequest(QWebEngineUrlRequestInfo& info) override;
|
|
|
|
QUrl GetRequestedURL() const;
|
|
|
|
signals:
|
|
void FrameChanged();
|
|
|
|
private:
|
|
QUrl requested_url;
|
|
};
|
|
|
|
#endif
|