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.
33 lines
933 B
C++
33 lines
933 B
C++
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#ifdef YUZU_USE_QT_WEB_ENGINE
|
|
|
|
#include "yuzu/util/url_request_interceptor.h"
|
|
|
|
UrlRequestInterceptor::UrlRequestInterceptor(QObject* p) : QWebEngineUrlRequestInterceptor(p) {}
|
|
|
|
UrlRequestInterceptor::~UrlRequestInterceptor() = default;
|
|
|
|
void UrlRequestInterceptor::interceptRequest(QWebEngineUrlRequestInfo& info) {
|
|
const auto resource_type = info.resourceType();
|
|
|
|
switch (resource_type) {
|
|
case QWebEngineUrlRequestInfo::ResourceTypeMainFrame:
|
|
requested_url = info.requestUrl();
|
|
emit FrameChanged();
|
|
break;
|
|
case QWebEngineUrlRequestInfo::ResourceTypeSubFrame:
|
|
case QWebEngineUrlRequestInfo::ResourceTypeXhr:
|
|
emit FrameChanged();
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
QUrl UrlRequestInterceptor::GetRequestedURL() const {
|
|
return requested_url;
|
|
}
|
|
|
|
#endif
|