mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-06-16 03:00:42 +02:00
21 lines
580 B
C++
21 lines
580 B
C++
//
|
|
// HFWebEngineRequestInterceptor.cpp
|
|
// interface/src/networking
|
|
//
|
|
// Created by Stephen Birarda on 2016-10-14.
|
|
// Copyright 2016 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#include "HFWebEngineRequestInterceptor.h"
|
|
|
|
#include <QtCore/QDebug>
|
|
|
|
#include "AccountManager.h"
|
|
#include "RequestFilters.h"
|
|
|
|
void HFWebEngineRequestInterceptor::interceptRequest(QWebEngineUrlRequestInfo& info) {
|
|
RequestFilters::interceptHFWebEngineRequest(info);
|
|
}
|