Index: src/org/adblockplus/android/ABPEngine.java |
diff --git a/src/org/adblockplus/android/ABPEngine.java b/src/org/adblockplus/android/ABPEngine.java |
index 4ee210499316716ea32769af09cf73147e74297d..25afac1a4eebc3aa16d63e717e2ddc60294a68c5 100644 |
--- a/src/org/adblockplus/android/ABPEngine.java |
+++ b/src/org/adblockplus/android/ABPEngine.java |
@@ -27,6 +27,7 @@ import org.adblockplus.libadblockplus.FilterEngine; |
import org.adblockplus.libadblockplus.FilterEngine.ContentType; |
import org.adblockplus.libadblockplus.JsEngine; |
import org.adblockplus.libadblockplus.LogSystem; |
+import org.adblockplus.libadblockplus.Notification; |
import org.adblockplus.libadblockplus.Subscription; |
import org.adblockplus.libadblockplus.UpdateAvailableCallback; |
import org.adblockplus.libadblockplus.UpdateCheckDoneCallback; |
@@ -280,4 +281,14 @@ public final class ABPEngine |
Utils.updateSubscriptionStatus(this.context, sub); |
} |
} |
+ |
+ public Notification getNotificationToShow(String url) |
+ { |
+ return this.filterEngine.getNotificationToShow(url); |
+ } |
+ |
+ public Notification getNotificationToShow() |
+ { |
+ return this.filterEngine.getNotificationToShow(); |
+ } |
} |