summaryrefslogtreecommitdiff
path: root/src/webpage.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/webpage.h')
-rw-r--r--src/webpage.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/webpage.h b/src/webpage.h
index 31f42184..abc9f64c 100644
--- a/src/webpage.h
+++ b/src/webpage.h
@@ -62,6 +62,16 @@ public:
QString suggestedFileName();
+ inline bool hasAdBlockedElements() const
+ {
+ return _hasAdBlockedElements;
+ };
+
+ inline void setHasAdBlockedElements(bool b)
+ {
+ _hasAdBlockedElements = b;
+ };
+
bool hasSslValid() const;
public Q_SLOTS:
@@ -98,6 +108,7 @@ private:
bool _networkAnalyzer;
bool _isOnRekonqPage;
+ bool _hasAdBlockedElements;
};
#endif