X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=src%2Finterceptors%2FUrlRequestInterceptor.h;h=5638768529dbf5713460d88278c4aa15c4aaf0b5;hb=refs%2Fheads%2Fmaster;hp=721d5231b3508deaea545650b29e94c77cbf5e2c;hpb=bbc06827f4301381ee3882000abbba147607aa35;p=PrivacyBrowserPC.git diff --git a/src/interceptors/UrlRequestInterceptor.h b/src/interceptors/UrlRequestInterceptor.h index 721d523..a79aa42 100644 --- a/src/interceptors/UrlRequestInterceptor.h +++ b/src/interceptors/UrlRequestInterceptor.h @@ -1,7 +1,7 @@ /* - * Copyright © 2022 Soren Stoutner . + * Copyright 2022-2024 Soren Stoutner . * - * This file is part of Privacy Browser PC . + * This file is part of Privacy Browser PC . * * Privacy Browser PC is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -20,6 +20,9 @@ #ifndef URLREQUESTINTERCEPTOR_H #define URLREQUESTINTERCEPTOR_H +// Application headers. +#include "structs/RequestStruct.h" + // Qt framework headers. #include @@ -37,6 +40,9 @@ public: signals: // The signals. - void applyDomainSettings(const QString hostname) const; + void applyDomainSettings(const QString &hostname) const; + void displayHttpPingDialog(const QString &httpPingUrl) const; + void newMainFrameResource() const; + void requestProcessed(RequestStruct *requestStruct) const; }; #endif