X-Git-Url: https://gitweb.stoutner.com/?a=blobdiff_plain;f=src%2Finterceptors%2FUrlRequestInterceptor.h;fp=src%2Finterceptors%2FUrlRequestInterceptor.h;h=a79aa4210b3a4d7a704d6c55546a613a99a9e320;hb=a44e607fb5398c80c5de2629017865ae749e8fbf;hp=5638768529dbf5713460d88278c4aa15c4aaf0b5;hpb=c5706a6ff3fbc42418e60b79fbe3f5c19396f7d2;p=PrivacyBrowserPC.git diff --git a/src/interceptors/UrlRequestInterceptor.h b/src/interceptors/UrlRequestInterceptor.h index 5638768..a79aa42 100644 --- a/src/interceptors/UrlRequestInterceptor.h +++ b/src/interceptors/UrlRequestInterceptor.h @@ -1,7 +1,7 @@ /* - * Copyright 2022-2023 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 @@ -39,5 +42,7 @@ signals: // The signals. void applyDomainSettings(const QString &hostname) const; void displayHttpPingDialog(const QString &httpPingUrl) const; + void newMainFrameResource() const; + void requestProcessed(RequestStruct *requestStruct) const; }; #endif